summaryrefslogtreecommitdiffstats
path: root/test/Lexer
diff options
context:
space:
mode:
authorAaron Ballman <aaron@aaronballman.com>2012-02-07 13:46:03 +0000
committerAaron Ballman <aaron@aaronballman.com>2012-02-07 13:46:03 +0000
commitb534a9ed04b343534e5f277b81d1170de3204164 (patch)
treedf8fbcf51cd9e9853c8fe1106f90de329e14680b /test/Lexer
parenta59d20b135bfde058a5a69045bab5ec4e2553f74 (diff)
Hex literals without a significand no longer crash the lexer. Fixes bug 7910
Patch by Eitan Adler git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@149984 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Lexer')
-rw-r--r--test/Lexer/hexfloat.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/Lexer/hexfloat.cpp b/test/Lexer/hexfloat.cpp
index 23daa49ad2..ad4e50a551 100644
--- a/test/Lexer/hexfloat.cpp
+++ b/test/Lexer/hexfloat.cpp
@@ -1,4 +1,5 @@
// RUN: %clang_cc1 -fsyntax-only -verify -pedantic %s
// 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}}