diff options
author | Chad Rosier <mcrosier@codeaurora.org> | 2014-11-19 23:20:35 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@codeaurora.org> | 2014-11-19 23:20:35 +0000 |
commit | 36577d037f7bf7cdddb2e1f6cce62c52aee04a14 (patch) | |
tree | 487b5e193f06a8e23de85cb521083fe748f291cf /clang/test/CodeGen/bmi-builtins.c | |
parent | 21866546aec380d2c9c2c28e5a5061b4e5333b03 (diff) | |
download | bcm5719-llvm-36577d037f7bf7cdddb2e1f6cce62c52aee04a14.tar.gz bcm5719-llvm-36577d037f7bf7cdddb2e1f6cce62c52aee04a14.zip |
Revert "[Reassociate] Update test cases due to r222142."
This reverts commit r222144. Commit r222142 is being reverted due to
a spec2006/gcc execution-time regression.
Update mips-varargs test as well.
llvm-svn: 222397
Diffstat (limited to 'clang/test/CodeGen/bmi-builtins.c')
-rw-r--r-- | clang/test/CodeGen/bmi-builtins.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/test/CodeGen/bmi-builtins.c b/clang/test/CodeGen/bmi-builtins.c index 6a5923917ec..92332e3a126 100644 --- a/clang/test/CodeGen/bmi-builtins.c +++ b/clang/test/CodeGen/bmi-builtins.c @@ -20,7 +20,7 @@ unsigned short test__tzcnt_u16(unsigned short __X) { unsigned int test__andn_u32(unsigned int __X, unsigned int __Y) { // CHECK: [[DEST:%.*]] = xor i32 %{{.*}}, -1 - // CHECK-NEXT: %{{.*}} = and i32 [[DEST]], %{{.*}} + // CHECK-NEXT: %{{.*}} = and i32 %{{.*}}, [[DEST]] return __andn_u32(__X, __Y); } @@ -54,7 +54,7 @@ unsigned int test__tzcnt_u32(unsigned int __X) { unsigned long long test__andn_u64(unsigned long __X, unsigned long __Y) { // CHECK: [[DEST:%.*]] = xor i64 %{{.*}}, -1 - // CHECK-NEXT: %{{.*}} = and i64 [[DEST]], %{{.*}} + // CHECK-NEXT: %{{.*}} = and i64 %{{.*}}, [[DEST]] return __andn_u64(__X, __Y); } @@ -95,7 +95,7 @@ unsigned short test_tzcnt_u16(unsigned short __X) { unsigned int test_andn_u32(unsigned int __X, unsigned int __Y) { // CHECK: [[DEST:%.*]] = xor i32 %{{.*}}, -1 - // CHECK-NEXT: %{{.*}} = and i32 [[DEST]], %{{.*}} + // CHECK-NEXT: %{{.*}} = and i32 %{{.*}}, [[DEST]] return _andn_u32(__X, __Y); } @@ -130,7 +130,7 @@ unsigned int test_tzcnt_u32(unsigned int __X) { unsigned long long test_andn_u64(unsigned long __X, unsigned long __Y) { // CHECK: [[DEST:%.*]] = xor i64 %{{.*}}, -1 - // CHECK-NEXT: %{{.*}} = and i64 [[DEST]], %{{.*}} + // CHECK-NEXT: %{{.*}} = and i64 %{{.*}}, [[DEST]] return _andn_u64(__X, __Y); } |