diff options
Diffstat (limited to 'clang/test/CodeGen/builtins-arm.c')
-rw-r--r-- | clang/test/CodeGen/builtins-arm.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/clang/test/CodeGen/builtins-arm.c b/clang/test/CodeGen/builtins-arm.c new file mode 100644 index 0000000..09df1ef --- /dev/null +++ b/clang/test/CodeGen/builtins-arm.c @@ -0,0 +1,12 @@ +// RUN: %clang_cc1 -Wall -Werror -triple thumbv7-eabi -target-cpu cortex-a8 -O3 -emit-llvm -o - %s | FileCheck %s + +void *f0() +{ + return __builtin_thread_pointer(); +} + +void f1(char *a, char *b) { + __clear_cache(a,b); +} + +// CHECK: call {{.*}} @__clear_cache |