Test that trivial constants are not printed in hex notation.

llvm-svn: 19281
This commit is contained in:
Chris Lattner 2005-01-04 01:58:26 +00:00
parent 472cc1062d
commit 9742ac8c7c
1 changed files with 6 additions and 0 deletions

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
}