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/prototype_bt.ll | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 test/Integer/prototype_bt.ll (limited to 'test/Integer/prototype_bt.ll') diff --git a/test/Integer/prototype_bt.ll b/test/Integer/prototype_bt.ll new file mode 100644 index 0000000000..c3dc6b2320 --- /dev/null +++ b/test/Integer/prototype_bt.ll @@ -0,0 +1,14 @@ +; RUN: llvm-as %s -o - | llvm-dis > %t1.ll +; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll +; RUN: diff %t1.ll %t2.ll + +implementation + +declare i31 "bar"(i31 %in) + +define i31 "foo"(i31 %blah) +begin + %xx = call i31 %bar(i31 %blah) + ret i31 %xx +end + -- cgit v1.2.3