summaryrefslogtreecommitdiff
path: root/test/Lexer/hexfloat.cpp
diff options
context:
space:
mode:
authorAaron Ballman <aaron@aaronballman.com>2012-02-08 13:36:33 +0000
committerAaron Ballman <aaron@aaronballman.com>2012-02-08 13:36:33 +0000
commit66b0ebac276353f3ff7d41eaba3e6d24d48663b7 (patch)
treee7c4ccc2dce835859441ff8f77a7922e346abec3 /test/Lexer/hexfloat.cpp
parentaf2771b147f1a5934c6c91574f1c2df986034e74 (diff)
downloadclang-66b0ebac276353f3ff7d41eaba3e6d24d48663b7.tar.gz
Fixing hex floating literal support so that it handles 0x.2p2 properly.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@150072 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Lexer/hexfloat.cpp')
-rw-r--r--test/Lexer/hexfloat.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/Lexer/hexfloat.cpp b/test/Lexer/hexfloat.cpp
index ad4e50a551..656693399f 100644
--- a/test/Lexer/hexfloat.cpp
+++ b/test/Lexer/hexfloat.cpp
@@ -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}}