diff options
author | Abramo Bagnara <abramo.bagnara@gmail.com> | 2011-01-06 16:56:00 +0000 |
---|---|---|
committer | Abramo Bagnara <abramo.bagnara@gmail.com> | 2011-01-06 16:56:00 +0000 |
commit | 772cae552e425e0db29d559d0c2d7035c266091f (patch) | |
tree | 43384eddf2e3db3020159daf98a5bf7cdbc568ac | |
parent | c81f2a2c7f83e64b3ef2b77030536290d0e2b350 (diff) |
Added testcase for commit r122963.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@122964 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Lexer/11-27-2007-FloatLiterals.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/Lexer/11-27-2007-FloatLiterals.c b/test/Lexer/11-27-2007-FloatLiterals.c index ccd9e2eff5..f3d978b069 100644 --- a/test/Lexer/11-27-2007-FloatLiterals.c +++ b/test/Lexer/11-27-2007-FloatLiterals.c @@ -4,8 +4,10 @@ // CHECK: 2.000000e+{{[0]*}}32 // CHECK: 0x3BFD83C940000000 // CHECK: 2.000000e+{{[0]*}}32 +// CHECK: 0x7FF0000000000000 float F = 1e-19f; double D = 2e32; float F2 = 01e-19f; double D2 = 02e32; +float F3 = 0xFp100000000000000000000F; |