From c0948366f6cbec12d2c87f9cb4a1cea1435cf02a Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Tue, 16 Jan 2007 18:08:22 +0000 Subject: New test cases for bit accurate integers developed by Guoling Han. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33259 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Integer/a15.ll | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 test/Integer/a15.ll (limited to 'test/Integer/a15.ll') diff --git a/test/Integer/a15.ll b/test/Integer/a15.ll new file mode 100644 index 0000000000..6c8e9d1dc3 --- /dev/null +++ b/test/Integer/a15.ll @@ -0,0 +1,23 @@ +; RUN: llvm-as %s -o - | llvm-dis > %t.ll +; RUN: diff %t.ll %s.out + +; test 15 bits +; +%b = constant i15 add(i15 32767, i15 1) +%c = constant i15 add(i15 32767, i15 32767) +%d = constant i15 add(i15 32760, i15 8) +%e = constant i15 sub(i15 0 , i15 1) +%f = constant i15 sub(i15 0 , i15 32767) +%g = constant i15 sub(i15 2 , i15 32767) + +%h = constant i15 shl(i15 1 , i8 15) +%i = constant i15 shl(i15 1 , i8 14) +%j = constant i15 lshr(i15 32767 , i8 14) +%k = constant i15 lshr(i15 32767 , i8 15) +%l = constant i15 ashr(i15 32767 , i8 14) +%m = constant i15 ashr(i15 32767 , i8 15) + +%n = constant i15 mul(i15 32767, i15 2) +%o = constant i15 trunc( i16 32768 to i15 ) +%p = constant i15 trunc( i16 32767 to i15 ) + -- cgit v1.2.3