diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-11-20 07:29:51 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-11-20 07:29:51 +0000 |
commit | bab98e4a32db0838d5e9bca743ba399fd8de7602 (patch) | |
tree | 2861dc0e6990c3c581e3f59cce62c35d75a30d43 | |
parent | 9a29db43a7a906162b0fde012b5d16f3b0895023 (diff) |
Test floating point constants
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18045 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Feature/float.ll | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/Feature/float.ll b/test/Feature/float.ll new file mode 100644 index 0000000000..e16f092e4c --- /dev/null +++ b/test/Feature/float.ll @@ -0,0 +1,6 @@ +; RUN: llvm-as %s -o - | llvm-dis > Output/t1.ll +; RUN: llvm-as Output/t1.ll -o - | llvm-dis > Output/t2.ll +; RUN: diff Output/t1.ll Output/t2.ll + +%F1 = global float 0x4010000000000000 +%D1 = global double 0x4010000000000000 |