summaryrefslogtreecommitdiff
path: root/lib/Target/Blackfin
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-03-23 23:46:07 +0000
committerChris Lattner <sabre@nondot.org>2010-03-23 23:46:07 +0000
commitae8f4c4f86f3c1dc58955dfb2a15ff27a7e56bd9 (patch)
treed29379b19a6972f2be6e48f8f04f82ce91f25542 /lib/Target/Blackfin
parentc75c5fa12582956fc6b7d7d756b2bdd49fa61f71 (diff)
downloadllvm-ae8f4c4f86f3c1dc58955dfb2a15ff27a7e56bd9.tar.gz
llvm-ae8f4c4f86f3c1dc58955dfb2a15ff27a7e56bd9.tar.bz2
llvm-ae8f4c4f86f3c1dc58955dfb2a15ff27a7e56bd9.tar.xz
[llvm_void_ty] is no longer needed for result types,
just use an empty result list. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99346 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Blackfin')
-rw-r--r--lib/Target/Blackfin/BlackfinIntrinsics.td6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/Blackfin/BlackfinIntrinsics.td b/lib/Target/Blackfin/BlackfinIntrinsics.td
index bf02cfecf8..ce21b08237 100644
--- a/lib/Target/Blackfin/BlackfinIntrinsics.td
+++ b/lib/Target/Blackfin/BlackfinIntrinsics.td
@@ -21,14 +21,14 @@ let TargetPrefix = "bfin", isTarget = 1 in {
// Execute csync instruction with workarounds
def int_bfin_csync : GCCBuiltin<"__builtin_bfin_csync">,
- Intrinsic<[llvm_void_ty]>;
+ Intrinsic<[]>;
// Execute ssync instruction with workarounds
def int_bfin_ssync : GCCBuiltin<"__builtin_bfin_ssync">,
- Intrinsic<[llvm_void_ty]>;
+ Intrinsic<[]>;
// Execute idle instruction with workarounds
def int_bfin_idle : GCCBuiltin<"__builtin_bfin_idle">,
- Intrinsic<[llvm_void_ty]>;
+ Intrinsic<[]>;
}