From 772cae552e425e0db29d559d0c2d7035c266091f Mon Sep 17 00:00:00 2001 From: Abramo Bagnara Date: Thu, 6 Jan 2011 16:56:00 +0000 Subject: [PATCH] Added testcase for commit r122963. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@122964 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Lexer/11-27-2007-FloatLiterals.c | 2 ++ 1 file changed, 2 insertions(+) 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; -- 2.40.0