]> granicus.if.org Git - clang/commitdiff
Fixing hex floating literal support so that it handles 0x.2p2 properly.
authorAaron Ballman <aaron@aaronballman.com>
Wed, 8 Feb 2012 13:36:33 +0000 (13:36 +0000)
committerAaron Ballman <aaron@aaronballman.com>
Wed, 8 Feb 2012 13:36:33 +0000 (13:36 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@150072 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Lex/LiteralSupport.cpp
test/Lexer/hexfloat.cpp

index c178d216ca867272520305d6378a032778b0ebe8..a3f97d9ecc956e9afe8e6194f09b9846cbf35abc 100644 (file)
@@ -546,22 +546,27 @@ void NumericLiteralParser::ParseNumberStartingWithZero(SourceLocation TokLoc) {
   // Handle a hex number like 0x1234.
   if ((*s == 'x' || *s == 'X') && (isxdigit(s[1]) || s[1] == '.')) {
     s++;
-    if (!isxdigit(*s)) {
-      PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, s-ThisTokBegin), \
-        diag::err_hexconstant_requires_digits);
-      hadError = true;
-      return;
-    }
     radix = 16;
     DigitsBegin = s;
     s = SkipHexDigits(s);
+    bool noSignificand = (s == DigitsBegin);
     if (s == ThisTokEnd) {
       // Done.
     } else if (*s == '.') {
       s++;
       saw_period = true;
+      const char *floatDigitsBegin = s;
       s = SkipHexDigits(s);
+      noSignificand &= (floatDigitsBegin == s);
+    }
+
+    if (noSignificand) {
+      PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, s-ThisTokBegin), \
+        diag::err_hexconstant_requires_digits);
+      hadError = true;
+      return;
     }
+
     // A binary exponent can appear with or with a '.'. If dotted, the
     // binary exponent is required.
     if (*s == 'p' || *s == 'P') {
index ad4e50a551ce99faefc86a3da4b2e59587a3e366..656693399fa1f06f34bd26bbbad96dff01c7d539 100644 (file)
@@ -2,4 +2,6 @@
 // RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify -pedantic %s
 float f = 0x1p+1; // expected-warning{{hexadecimal floating constants are a C99 feature}}
 double e = 0x.p0; //expected-error{{hexadecimal floating constants require a significand}}
-
+double d = 0x.2p2; // expected-warning{{hexadecimal floating constants are a C99 feature}}
+float g = 0x1.2p2; // expected-warning{{hexadecimal floating constants are a C99 feature}}
+double h = 0x1.p2; // expected-warning{{hexadecimal floating constants are a C99 feature}}