From fb51713cef7cc43d8964c2b8ccc90f76b1edede6 Mon Sep 17 00:00:00 2001 From: Zhou Sheng Date: Fri, 19 Jan 2007 01:35:08 +0000 Subject: [PATCH] Add one test case for Arbitrary BitWidth Integers. llvm-svn: 33348 --- llvm/test/Integer/a1.ll | 20 ++++++++++++++++++++ llvm/test/Integer/a1.ll.out | 16 ++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 llvm/test/Integer/a1.ll create mode 100644 llvm/test/Integer/a1.ll.out diff --git a/llvm/test/Integer/a1.ll b/llvm/test/Integer/a1.ll new file mode 100644 index 000000000000..5b9ad374ca1c --- /dev/null +++ b/llvm/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/llvm/test/Integer/a1.ll.out b/llvm/test/Integer/a1.ll.out new file mode 100644 index 000000000000..829839284c12 --- /dev/null +++ b/llvm/test/Integer/a1.ll.out @@ -0,0 +1,16 @@ +; ModuleID = '' +%b = constant i1 false ; [#uses=0] +%c = constant i1 false ; [#uses=0] +%d = constant i1 false ; [#uses=0] +%e = constant i1 false ; [#uses=0] +%f = constant i1 false ; [#uses=0] +%g = constant i1 false ; [#uses=0] +%h = constant i1 false ; [#uses=0] +%i = constant i1 true ; [#uses=0] +%j = constant i1 false ; [#uses=0] +%m = constant i1 true ; [#uses=0] +%n = constant i1 true ; [#uses=0] +%o = constant i1 true ; [#uses=0] +%p = constant i1 true ; [#uses=0] + +implementation ; Functions: