diff options
Diffstat (limited to 'test/Assembler/2005-01-03-FPConstantDisassembly.ll')
-rw-r--r-- | test/Assembler/2005-01-03-FPConstantDisassembly.ll | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/Assembler/2005-01-03-FPConstantDisassembly.ll b/test/Assembler/2005-01-03-FPConstantDisassembly.ll index aaa776f..643d04c 100644 --- a/test/Assembler/2005-01-03-FPConstantDisassembly.ll +++ b/test/Assembler/2005-01-03-FPConstantDisassembly.ll @@ -1,6 +1,8 @@ -; RUN: llvm-as < %s | llvm-dis | grep 1.0 +; RUN: llvm-as < %s | llvm-dis | FileCheck %s +; RUN: verify-uselistorder %s define double @test() { +; CHECK: ret double 1.0 ret double 1.0 ;; This should not require hex notation } |