Chromium Code Reviews| Index: tests_lit/llvm2ice_tests/test_i1.ll |
| diff --git a/tests_lit/llvm2ice_tests/test_i1.ll b/tests_lit/llvm2ice_tests/test_i1.ll |
| index 697f0d1fcd65b8f078cdc84366f80441eda50196..d3c15e5ffa52e6c7700d7bd20589ce33c9d07b80 100644 |
| --- a/tests_lit/llvm2ice_tests/test_i1.ll |
| +++ b/tests_lit/llvm2ice_tests/test_i1.ll |
| @@ -79,8 +79,8 @@ entry: |
| ; match the trunc instruction |
| ; CHECK: and {{.*}}, 1 |
| ; match the zext i1 instruction |
| -; CHECK: movzx |
| -; CHECK: and {{.*}}, 1 |
| +; CHECK: movzx [[REG:.*]], {{[a-d]l|byte ptr}} |
|
Jim Stichnoth
2014/10/15 20:08:45
Should this be something like [[REG:e.*]] to indic
jvoung (off chromium)
2014/10/15 21:07:29
Hmm, yes it's a bit puzzling.
Thinking about it m
|
| +; CHECK: and [[REG]], 1 |
| ; Test zext to i32. |
| define internal i32 @testZextI32(i32 %arg) { |
| @@ -138,7 +138,7 @@ entry: |
| ; match the trunc instruction |
| ; CHECK: and {{.*}}, 1 |
| ; match the sext i1 instruction |
| -; CHECK: movzx [[REG:.*]], |
| +; CHECK: movzx e[[REG:.*]], {{[a-d]l|byte ptr}} |
| ; CHECK-NEXT: shl [[REG]], 15 |
| ; CHECK-NEXT: sar [[REG]], 15 |