Index: tests_lit/llvm2ice_tests/uncond_br.ll |
diff --git a/tests_lit/llvm2ice_tests/uncond_br.ll b/tests_lit/llvm2ice_tests/uncond_br.ll |
index 1e5bcae124a6a295a7205f8942364debccbe935f..3a0b01a92dcc48c1cb198334891b3aeed030bbd6 100644 |
--- a/tests_lit/llvm2ice_tests/uncond_br.ll |
+++ b/tests_lit/llvm2ice_tests/uncond_br.ll |
@@ -23,8 +23,8 @@ target: |
} |
; MIPS32-LABEL: uncond1 |
-; MIPS32: b {{[0-9]+}} <.Luncond1$target> |
+; MIPS32: b {{[0-9 | a-f]+}} <.Luncond1$target> |
Jim Stichnoth
2016/06/09 21:19:47
I think the regex should just be
[0-9a-f]+
Right
sagar.thakur
2016/06/10 09:40:35
Yes, changed it to [0-9a-f]+.
|
; MIPS32: <.Luncond1$target>: |
; MIPS32: li |
; MIPS32: addu |
-; MIPS32: b {{[0-9]+}} <.Luncond1$target> |
+; MIPS32: b {{[0-9 | a-f]+}} <.Luncond1$target> |