diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-07-16 00:31:23 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-07-16 00:31:23 +0000 |
commit | 999daa57c75e3df4a0df7e00fb797411e5507a52 (patch) | |
tree | 6188dc8a0f6474253b0fdc55efbcebd3dbe1a17f /clang/test/CodeGen/builtins-arm.c | |
parent | ea22d4288a5310894a9f9dbb7b918aa560554bf9 (diff) | |
download | bcm5719-llvm-999daa57c75e3df4a0df7e00fb797411e5507a52.tar.gz bcm5719-llvm-999daa57c75e3df4a0df7e00fb797411e5507a52.zip |
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.
llvm-svn: 108487
Diffstat (limited to 'clang/test/CodeGen/builtins-arm.c')
-rw-r--r-- | clang/test/CodeGen/builtins-arm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/builtins-arm.c b/clang/test/CodeGen/builtins-arm.c index 546f57a4a18..09df1ef42c7 100644 --- a/clang/test/CodeGen/builtins-arm.c +++ b/clang/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 |