Add the check to the testcase of r106419.
[oota-llvm.git] / test / CodeGen / CBackend / 2004-02-26-FPNotPrintableConstants.ll
1 ; This is a non-normal FP value
2 ; RUN: llc < %s -march=c | grep FPConstant | grep static
3
4 define float @func() {
5         ret float 0xFFF0000000000000
6 }
7
8 define double @func2() {
9         ret double 0xFF20000000000000
10 }
11