llvm-6502/test/Assembler/2005-01-03-FPConstantDisassembly.ll
Rafael Espindola 4396b44b9a Use FileCheck in a few tests.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@221459 91177308-0d34-0410-b5e6-96231b3b80d8
2014-11-06 15:05:51 +00:00

9 lines
193 B
LLVM

; 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
}