diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-04-25 17:25:46 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-04-25 17:25:46 +0000 |
commit | 0fd930e86ca14e325f73a91a3b6c26eccd050624 (patch) | |
tree | cadd7c91ca1959552385f2bfa57316cb69232ab5 /clang/test/CodeGen/builtins-arm.c | |
parent | 7e7c2f9ca69b87a1ff1b0030dfddf1e782c2c31d (diff) | |
download | bcm5719-llvm-0fd930e86ca14e325f73a91a3b6c26eccd050624.tar.gz bcm5719-llvm-0fd930e86ca14e325f73a91a3b6c26eccd050624.zip |
CodeGen: replace use of @llvm.arm.sevl with @llvm.arm.hint
Use the new generic @llvm.arm.hint hint intrinsic rather than the specialised
@llvm.arm.sevl hint instruction.
llvm-svn: 207243
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 937e1d96259..880d2d17981 100644 --- a/clang/test/CodeGen/builtins-arm.c +++ b/clang/test/CodeGen/builtins-arm.c @@ -22,7 +22,7 @@ void test_eh_return_data_regno() void sevl() { __builtin_arm_sevl(); } -// CHECK: call {{.*}} @llvm.arm.sevl +// CHECK: call {{.*}} @llvm.arm.hint(i32 5) void test_barrier() { __builtin_arm_dmb(1); //CHECK: call {{.*}} @llvm.arm.dmb(i32 1) |