diff options
Diffstat (limited to 'llvm/test/CodeGen/CBackend/2003-10-12-NANGlobalInits.ll')
-rw-r--r-- | llvm/test/CodeGen/CBackend/2003-10-12-NANGlobalInits.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/CBackend/2003-10-12-NANGlobalInits.ll b/llvm/test/CodeGen/CBackend/2003-10-12-NANGlobalInits.ll index a82d7e59696..077f16cfac9 100644 --- a/llvm/test/CodeGen/CBackend/2003-10-12-NANGlobalInits.ll +++ b/llvm/test/CodeGen/CBackend/2003-10-12-NANGlobalInits.ll @@ -1,5 +1,5 @@ -; RUN: llvm-upgrade < %s | llvm-as | llc -march=c +; RUN: llvm-as < %s | llc -march=c ; This is a non-normal FP value: it's a nan. -%NAN = global { float } { float 0x7FF8000000000000 } -%NANs = global { float } { float 0x7FF4000000000000 } +@NAN = global { float } { float 0x7FF8000000000000 } ; <{ float }*> [#uses=0] +@NANs = global { float } { float 0x7FFC000000000000 } ; <{ float }*> [#uses=0] |