diff options
| author | Tim Northover <tnorthover@apple.com> | 2014-04-22 12:45:55 +0000 |
|---|---|---|
| committer | Tim Northover <tnorthover@apple.com> | 2014-04-22 12:45:55 +0000 |
| commit | 761aa37e3efb3f3371acd486c6ec5f5e89a36ea3 (patch) | |
| tree | 0b35f2e803aa80531d448de76e9fac084ea55126 /clang/test/CodeGen | |
| parent | 52d3283026ede582ad678543bd6785a4e18819dc (diff) | |
| download | bcm5719-llvm-761aa37e3efb3f3371acd486c6ec5f5e89a36ea3.tar.gz bcm5719-llvm-761aa37e3efb3f3371acd486c6ec5f5e89a36ea3.zip | |
ARM64: update NEON test to improved backend codegen
llvm-svn: 206890
Diffstat (limited to 'clang/test/CodeGen')
| -rw-r--r-- | clang/test/CodeGen/aarch64-neon-intrinsics.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGen/aarch64-neon-intrinsics.c b/clang/test/CodeGen/aarch64-neon-intrinsics.c index 9cff0bc0274..63095ab83b0 100644 --- a/clang/test/CodeGen/aarch64-neon-intrinsics.c +++ b/clang/test/CodeGen/aarch64-neon-intrinsics.c @@ -8175,13 +8175,13 @@ int64_t test_vcltzd_s64(int64_t a) { int64_t test_vtstd_s64(int64_t a, int64_t b) { // CHECK-LABEL: test_vtstd_s64 -// CHECK: {{cmtst d[0-9]+, d[0-9]+, d[0-9]+|and x[0-9]+, x1, x0}} +// CHECK: {{cmtst d[0-9]+, d[0-9]+, d[0-9]+|tst x1, x0}} return (int64_t)vtstd_s64(a, b); } uint64_t test_vtstd_u64(uint64_t a, uint64_t b) { // CHECK-LABEL: test_vtstd_u64 -// CHECK: {{cmtst d[0-9]+, d[0-9]+, d[0-9]+|and x[0-9]+, x1, x0}} +// CHECK: {{cmtst d[0-9]+, d[0-9]+, d[0-9]+|tst x1, x0}} return (uint64_t)vtstd_u64(a, b); } |

