]> granicus.if.org Git - clang/commitdiff
ARM64: update NEON test to improved backend codegen
authorTim Northover <tnorthover@apple.com>
Tue, 22 Apr 2014 12:45:55 +0000 (12:45 +0000)
committerTim Northover <tnorthover@apple.com>
Tue, 22 Apr 2014 12:45:55 +0000 (12:45 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@206890 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/aarch64-neon-intrinsics.c

index 9cff0bc02744c5ff318a01a9a07339a456290dd4..63095ab83b00bca9a055899c6e32fc3b04780bf2 100644 (file)
@@ -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);
 }