diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-07-03 02:43:20 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-07-03 02:43:20 +0000 |
commit | ece7217f70c41a2b983c937ce292540dc33b0b40 (patch) | |
tree | e2329890b6b90f790c8c021dfb0d89cf62310079 /clang/test/CodeGen/builtins-arm.c | |
parent | 395421fd980a7aeeef123f5bd1fb28aae07299fa (diff) | |
download | bcm5719-llvm-ece7217f70c41a2b983c937ce292540dc33b0b40.tar.gz bcm5719-llvm-ece7217f70c41a2b983c937ce292540dc33b0b40.zip |
ARM: rename ARM builtins to use __builtin_arm prefix
This corrects SVN r212196's naming change to use the proper prefix of
`__builtin_arm_` instead of `__builtin_`.
Thanks to Yi Kong for pointing out the incorrect naming!
llvm-svn: 212253
Diffstat (limited to 'clang/test/CodeGen/builtins-arm.c')
-rw-r--r-- | clang/test/CodeGen/builtins-arm.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/clang/test/CodeGen/builtins-arm.c b/clang/test/CodeGen/builtins-arm.c index 1d22bd595df..7b7207299e3 100644 --- a/clang/test/CodeGen/builtins-arm.c +++ b/clang/test/CodeGen/builtins-arm.c @@ -20,31 +20,31 @@ void test_eh_return_data_regno() } void yield() { - __builtin_yield(); + __builtin_arm_yield(); } // CHECK: call {{.*}} @llvm.arm.hint(i32 1) void wfe() { - __builtin_wfe(); + __builtin_arm_wfe(); } // CHECK: call {{.*}} @llvm.arm.hint(i32 2) void wfi() { - __builtin_wfi(); + __builtin_arm_wfi(); } // CHECK: call {{.*}} @llvm.arm.hint(i32 3) void sev() { - __builtin_sev(); + __builtin_arm_sev(); } // CHECK: call {{.*}} @llvm.arm.hint(i32 4) void sevl() { - __builtin_sevl(); + __builtin_arm_sevl(); } // CHECK: call {{.*}} @llvm.arm.hint(i32 5) |