Index: tests_lit/llvm2ice_tests/bool-opt.ll |
diff --git a/tests_lit/llvm2ice_tests/bool-opt.ll b/tests_lit/llvm2ice_tests/bool-opt.ll |
index 1ccdeb6b4d68966180b99dada80a002511bc2078..40cc44b193e9dc5129117aba31eb050fd4cfd324 100644 |
--- a/tests_lit/llvm2ice_tests/bool-opt.ll |
+++ b/tests_lit/llvm2ice_tests/bool-opt.ll |
@@ -9,11 +9,12 @@ |
define void @testBool(i32 %a, i32 %b) { |
entry: |
%cmp = icmp eq i32 %a, %b |
- tail call void @use(i1 %cmp) |
+ %cmp_ext = zext i1 %cmp to i32 |
+ tail call void @use(i32 %cmp_ext) |
ret void |
} |
-declare void @use(i1 zeroext) #1 |
+declare void @use(i32) |
; CHECK-NOT: ICE translation error |
; ERRORS-NOT: ICE translation error |