diff options
author | Ed Schouten <ed@FreeBSD.org> | 2009-06-02 17:52:33 +0000 |
---|---|---|
committer | Ed Schouten <ed@FreeBSD.org> | 2009-06-02 17:52:33 +0000 |
commit | 009b1c42aa6266385f2c37e227516b24077e6dd7 (patch) | |
tree | 64ba909838c23261cace781ece27d106134ea451 /test/ExecutionEngine/fpbitcast.ll |
Diffstat (limited to 'test/ExecutionEngine/fpbitcast.ll')
-rw-r--r-- | test/ExecutionEngine/fpbitcast.ll | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/test/ExecutionEngine/fpbitcast.ll b/test/ExecutionEngine/fpbitcast.ll new file mode 100644 index 0000000000000..34ca129ead6f7 --- /dev/null +++ b/test/ExecutionEngine/fpbitcast.ll @@ -0,0 +1,21 @@ +; RUN: llvm-as < %s > %t.bc +; RUN: lli -force-interpreter=true %t.bc | grep 40091eb8 +; +define i32 @test(double %x) { +entry: + %x46.i = bitcast double %x to i64 + %tmp343.i = lshr i64 %x46.i, 32 + %tmp344.i = trunc i64 %tmp343.i to i32 + ret i32 %tmp344.i +} + +define i32 @main() +{ + %res = call i32 @test(double 3.14) + %ptr = getelementptr [4 x i8]* @format, i32 0, i32 0 + call i32 (i8*,...)* @printf(i8* %ptr, i32 %res) + ret i32 0 +} + +declare i32 @printf(i8*, ...) +@format = internal constant [4 x i8] c"%x\0A\00" |