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/fold-fpcast_bt.ll | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 test/Integer/fold-fpcast_bt.ll (limited to 'test/Integer/fold-fpcast_bt.ll') diff --git a/test/Integer/fold-fpcast_bt.ll b/test/Integer/fold-fpcast_bt.ll new file mode 100644 index 0000000000..71823ab146 --- /dev/null +++ b/test/Integer/fold-fpcast_bt.ll @@ -0,0 +1,18 @@ +; RUN: llvm-as < %s | llvm-dis | not grep bitcast + +define i60 %test1() { + ret i60 fptoui(float 3.7 to i60) +} + +define float %test2() { + ret float uitofp(i60 17 to float) +} + +define i64 %test3() { + ret i64 bitcast (double 3.1415926 to i64) +} + +define double %test4() { + ret double bitcast (i64 42 to double) +} + -- cgit v1.2.3