Christopher Lamb | d763e3f | 2007-11-29 06:06:27 +0000 | [diff] [blame] | 1 | // RUN: clang %s -emit-llvm 2>&1 | grep 0x3BFD83C940000000 | count 2 |
Christopher Lamb | 608dc08 | 2007-11-30 06:35:48 +0000 | [diff] [blame] | 2 | // RUN: clang %s -emit-llvm 2>&1 | grep 2.000000e+32 | count 2 |
Christopher Lamb | d763e3f | 2007-11-29 06:06:27 +0000 | [diff] [blame] | 3 | |
4 | float F = 1e-19f; | ||||
5 | double D = 2e32; | ||||
6 | float F2 = 01e-19f; | ||||
7 | double D2 = 02e32; |