about summary refs log tree commit diff homepage
path: root/test/Concrete/CmpEq.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/Concrete/CmpEq.ll')
-rw-r--r--test/Concrete/CmpEq.ll14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/Concrete/CmpEq.ll b/test/Concrete/CmpEq.ll
new file mode 100644
index 00000000..a8c2fe7a
--- /dev/null
+++ b/test/Concrete/CmpEq.ll
@@ -0,0 +1,14 @@
+declare void @print_i32(i32)
+
+define i32 @main() {
+	%a = add i8 0, 1
+	%b = add i8 %a, -1
+	%c = icmp eq i8 %b, 0
+	br i1 %c, label %exitTrue, label %exitFalse
+exitTrue:
+	call void @print_i32(i32 1)
+	ret i32 0
+exitFalse:
+	call void @print_i32(i32 0)
+	ret i32 0
+}