blob: bd53d4a89e5646aca43f648a284289f539c69e10 [file] [log] [blame]
Benjamin Kramer0b495cd2010-06-25 12:48:07 +00001// RUN: %clang_cc1 -fsyntax-only -verify -pedantic %s
Douglas Gregor46717302011-10-12 18:51:02 +00002// RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify -pedantic %s
3float f = 0x1p+1; // expected-warning{{hexadecimal floating constants are a C99 feature}}
Aaron Ballmanb534a9e2012-02-07 13:46:03 +00004double e = 0x.p0; //expected-error{{hexadecimal floating constants require a significand}}
Aaron Ballman66b0eba2012-02-08 13:36:33 +00005double d = 0x.2p2; // expected-warning{{hexadecimal floating constants are a C99 feature}}
6float g = 0x1.2p2; // expected-warning{{hexadecimal floating constants are a C99 feature}}
7double h = 0x1.p2; // expected-warning{{hexadecimal floating constants are a C99 feature}}
Richard Smithd2e95d12012-06-15 05:07:49 +00008
9// PR12717: In order to minimally diverge from the C++ standard, we do not lex
10// 'p[+-]' as part of a pp-number unless the token starts 0x and doesn't contain
11// an underscore.
12double i = 0p+3; // expected-error{{invalid suffix 'p' on integer constant}}
13#define PREFIX(x) foo ## x
14double foo0p = 1, j = PREFIX(0p+3); // ok
Stephen Hines651f13c2014-04-23 16:59:28 -070015double k = 0x42_amp+3; // expected-error-re{{{{invalid suffix '_amp' on integer constant|no matching literal operator for call to 'operator "" _amp'}}}}