From dfaeb0e8b9e739b75fb9f1036f45553f8be4ef5a Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 12 Oct 2003 07:31:25 +0000 Subject: [PATCH] Test that we can emit global initializers that are not normal FP values git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9050 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CBackend/2003-10-12-NANGlobalInits.ll | 3 +++ test/CodeGen/CBackend/2003-10-12-NANGlobalInits.ll | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 test/CBackend/2003-10-12-NANGlobalInits.ll create mode 100644 test/CodeGen/CBackend/2003-10-12-NANGlobalInits.ll diff --git a/test/CBackend/2003-10-12-NANGlobalInits.ll b/test/CBackend/2003-10-12-NANGlobalInits.ll new file mode 100644 index 00000000000..d2069985c27 --- /dev/null +++ b/test/CBackend/2003-10-12-NANGlobalInits.ll @@ -0,0 +1,3 @@ +; This is a non-normal FP value: it's a nan. +%NAN = global { float } { float 0x7FF8000000000000 } + diff --git a/test/CodeGen/CBackend/2003-10-12-NANGlobalInits.ll b/test/CodeGen/CBackend/2003-10-12-NANGlobalInits.ll new file mode 100644 index 00000000000..d2069985c27 --- /dev/null +++ b/test/CodeGen/CBackend/2003-10-12-NANGlobalInits.ll @@ -0,0 +1,3 @@ +; This is a non-normal FP value: it's a nan. +%NAN = global { float } { float 0x7FF8000000000000 } + -- 2.34.1