diff options
author | Craig Topper <craig.topper@gmail.com> | 2015-10-13 05:15:17 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2015-10-13 05:15:17 +0000 |
commit | 334d46150dc613d78a514e127c9fea83b22fc914 (patch) | |
tree | d7e8c8893164fa5143453daa1c3c1c936ca0132f | |
parent | 24b56a62bb9a9140f03bc62b87512ea1f9e23671 (diff) | |
download | bcm5719-llvm-334d46150dc613d78a514e127c9fea83b22fc914.tar.gz bcm5719-llvm-334d46150dc613d78a514e127c9fea83b22fc914.zip |
[X86] LLVM now prints XOP immediates as unsigned after r250147. Fix expected check string accordingly.
llvm-svn: 250149
-rw-r--r-- | clang/test/CodeGen/xop-builtins.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/xop-builtins.c b/clang/test/CodeGen/xop-builtins.c index c82d8278896..97b39c708dd 100644 --- a/clang/test/CodeGen/xop-builtins.c +++ b/clang/test/CodeGen/xop-builtins.c @@ -225,7 +225,7 @@ __m128i test_mm_roti_epi16(__m128i a) { __m128i test_mm_roti_epi32(__m128i a) { // CHECK: @llvm.x86.xop.vprotdi - // CHECK-ASM: vprotd $-30, %xmm{{.*}}, %xmm{{.*}} + // CHECK-ASM: vprotd $226, %xmm{{.*}}, %xmm{{.*}} return _mm_roti_epi32(a, -30); } |