X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FInteger%2Ffold-fpcast_bt.ll;h=0ce776dbf85117cfc5f2da79e6052af7bfc80cc5;hb=7a7153e5ee65fc06452f10f6fbe541a6c5401268;hp=d1453c4ec7a4116df0581bbb7ea9fc1fd7573310;hpb=9160a841ac8653f7e8549f06705e8572ef8e1db4;p=oota-llvm.git diff --git a/test/Integer/fold-fpcast_bt.ll b/test/Integer/fold-fpcast_bt.ll index d1453c4ec7a..0ce776dbf85 100644 --- a/test/Integer/fold-fpcast_bt.ll +++ b/test/Integer/fold-fpcast_bt.ll @@ -1,33 +1,34 @@ -; RUN: llvm-as < %s | llvm-dis | not grep bitcast +; RUN: llvm-as < %s | llvm-dis | FileCheck %s +; CHECK-NOT: bitcast -define i60 %test1() { - ret i60 fptoui(float 3.7 to i60) +define i60 @test1() { + ret i60 fptoui(float 0x400D9999A0000000 to i60) } -define float %test2() { +define float @test2() { ret float uitofp(i60 17 to float) } -define i64 %test3() { - ret i64 bitcast (double 3.1415926 to i64) +define i64 @test3() { + ret i64 bitcast (double 0x400921FB4D12D84A to i64) } -define double %test4() { +define double @test4() { ret double bitcast (i64 42 to double) } -define i30 %test5() { - ret i30 fptoui(float 3.7 to i30) +define i30 @test5() { + ret i30 fptoui(float 0x400D9999A0000000 to i30) } -define float %test6() { +define float @test6() { ret float uitofp(i30 17 to float) } -define i6 %test7() { - ret i6 bitcast (double 3.1415926 to i6) +define i64 @test7() { + ret i64 bitcast (double 0x400921FB4D12D84A to i64) } -define double %test8() { - ret double bitcast (i9 42 to double) +define double @test8() { + ret double bitcast (i64 42 to double) }