Add one test case for Arbitrary BitWidth Integers.
authorZhou Sheng <zhousheng00@gmail.com>
Fri, 19 Jan 2007 01:35:08 +0000 (01:35 +0000)
committerZhou Sheng <zhousheng00@gmail.com>
Fri, 19 Jan 2007 01:35:08 +0000 (01:35 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33348 91177308-0d34-0410-b5e6-96231b3b80d8

test/Integer/a1.ll [new file with mode: 0644]
test/Integer/a1.ll.out [new file with mode: 0644]

diff --git a/test/Integer/a1.ll b/test/Integer/a1.ll
new file mode 100644 (file)
index 0000000..5b9ad37
--- /dev/null
@@ -0,0 +1,20 @@
+; RUN: llvm-as %s -o - | llvm-dis > %t.ll
+; RUN: diff %t.ll %s.out
+
+; test 1 bit
+;
+%b = constant i1 add(i1 1 , i1 1)
+%c = constant i1 add(i1 -1, i1 1)
+%d = constant i1 add(i1 -1, i1 -1)
+%e = constant i1 sub(i1 -1, i1 1)
+%f = constant i1 sub(i1 1 , i1 -1)
+%g = constant i1 sub(i1 1 , i1 1)
+
+%h = constant i1 shl(i1 1 , i8 1)
+%i = constant i1 shl(i1 1 , i8 0)
+%j = constant i1 lshr(i1 1, i8 1)
+%m = constant i1 ashr(i1 1, i8 1)
+
+%n = constant i1 mul(i1 -1, i1 1)
+%o = constant i1 sdiv(i1 -1, i1 1)
+%p = constant i1 sdiv(i1 1 , i1 -1)
diff --git a/test/Integer/a1.ll.out b/test/Integer/a1.ll.out
new file mode 100644 (file)
index 0000000..8298392
--- /dev/null
@@ -0,0 +1,16 @@
+; ModuleID = '<stdin>'
+%b = constant i1 false         ; <i1*> [#uses=0]
+%c = constant i1 false         ; <i1*> [#uses=0]
+%d = constant i1 false         ; <i1*> [#uses=0]
+%e = constant i1 false         ; <i1*> [#uses=0]
+%f = constant i1 false         ; <i1*> [#uses=0]
+%g = constant i1 false         ; <i1*> [#uses=0]
+%h = constant i1 false         ; <i1*> [#uses=0]
+%i = constant i1 true          ; <i1*> [#uses=0]
+%j = constant i1 false         ; <i1*> [#uses=0]
+%m = constant i1 true          ; <i1*> [#uses=0]
+%n = constant i1 true          ; <i1*> [#uses=0]
+%o = constant i1 true          ; <i1*> [#uses=0]
+%p = constant i1 true          ; <i1*> [#uses=0]
+
+implementation   ; Functions: