summaryrefslogtreecommitdiff
path: root/test/CodeGen/builtins-arm.c
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2010-07-16 00:31:23 +0000
committerDaniel Dunbar <daniel@zuster.org>2010-07-16 00:31:23 +0000
commit1058253c364b2c98e6cecfe15d18d3562db245f4 (patch)
tree5e3734f1530a144f08fc56a2b2a9e5d4abf941ce /test/CodeGen/builtins-arm.c
parent754b9fbaa13749c61393cc613eec7c79efe60ddf (diff)
downloadclang-1058253c364b2c98e6cecfe15d18d3562db245f4.tar.gz
Builtins/ARM: __clear_cache doesn't seem to have a consistent prototype, declare
the builtin as void __clear_cache(...) to workaround this, which appears to match what GCC does. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@108487 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/builtins-arm.c')
-rw-r--r--test/CodeGen/builtins-arm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/builtins-arm.c b/test/CodeGen/builtins-arm.c
index 546f57a4a1..09df1ef42c 100644
--- a/test/CodeGen/builtins-arm.c
+++ b/test/CodeGen/builtins-arm.c
@@ -9,4 +9,4 @@ void f1(char *a, char *b) {
__clear_cache(a,b);
}
-// CHECK: call void @__clear_cache
+// CHECK: call {{.*}} @__clear_cache