diff options
author | Zhou Sheng <zhousheng00@gmail.com> | 2007-01-19 01:35:08 +0000 |
---|---|---|
committer | Zhou Sheng <zhousheng00@gmail.com> | 2007-01-19 01:35:08 +0000 |
commit | 96b366d4ca783962f6c34dc23971e294c94e3a7e (patch) | |
tree | 387e647fe51d21e71bf930dbe486642f2d69c143 /test | |
parent | 021830bb0394332063e856e0a9e4b6179513133b (diff) |
Add one test case for Arbitrary BitWidth Integers.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33348 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/Integer/a1.ll | 20 | ||||
-rw-r--r-- | test/Integer/a1.ll.out | 16 |
2 files changed, 36 insertions, 0 deletions
diff --git a/test/Integer/a1.ll b/test/Integer/a1.ll new file mode 100644 index 0000000000..5b9ad374ca --- /dev/null +++ b/test/Integer/a1.ll @@ -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 index 0000000000..829839284c --- /dev/null +++ b/test/Integer/a1.ll.out @@ -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: |