Test that trivial constants are not printed in hex notation.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19281 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2005-01-04 01:58:26 +00:00
parent 71d94d16b6
commit b9befc5179

View File

@ -0,0 +1,6 @@
; RUN: llvm-as < %s | llvm-dis | grep '1.0'
double %test() {
ret double 1.0 ;; This should not require hex notation
}