Index: tests_lit/llvm2ice_tests/nacl-other-intrinsics.ll |
diff --git a/tests_lit/llvm2ice_tests/nacl-other-intrinsics.ll b/tests_lit/llvm2ice_tests/nacl-other-intrinsics.ll |
index e8bbb30bc170f315a6a215de7bf5ab3c11ca4e32..1dc5b90b25c90149b47d9e49ab6c2b8bc1be6084 100644 |
--- a/tests_lit/llvm2ice_tests/nacl-other-intrinsics.ll |
+++ b/tests_lit/llvm2ice_tests/nacl-other-intrinsics.ll |
@@ -326,7 +326,9 @@ entry: |
ret i32 %r_zext |
} |
; CHECK-LABEL: test_bswap_16 |
-; CHECK: rol {{.*}}, 8 |
+; Make sure this is the right operand size so that the most significant bit |
+; to least significant bit rotation happens at the right boundary. |
+; CHECK: rol {{[abcd]x|word ptr}}, 8 |
Jim Stichnoth
2014/10/02 20:35:17
Though it's very unlikely, you might want to allow
jvoung (off chromium)
2014/10/02 22:04:13
Done.
|
define i32 @test_bswap_32(i32 %x) { |
entry: |