Fix Windows build: replace __func__ with LLVM_FUNCTION_NAME
[oota-llvm.git] / test / Assembler / 2005-01-03-FPConstantDisassembly.ll
index 7dfa0e54043e60c59bdd3d2d1bd9a6be07aba7a7..643d04c84b3fb89146c0494fb5d8248b87aee99c 100644 (file)
@@ -1,6 +1,8 @@
-; RUN: llvm-upgrade < %s | llvm-as | llvm-dis | grep '1.0'
+; RUN: llvm-as < %s | llvm-dis | FileCheck %s
+; RUN: verify-uselistorder %s
 
-double %test() {
+define double @test() {
+; CHECK: ret double 1.0
         ret double 1.0   ;; This should not require hex notation
 }