2010-06-25 20:48:07 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -verify -pedantic %s
|
2011-10-13 02:51:02 +08:00
|
|
|
// RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify -pedantic %s
|
|
|
|
float f = 0x1p+1; // expected-warning{{hexadecimal floating constants are a C99 feature}}
|
2012-02-07 21:46:03 +08:00
|
|
|
double e = 0x.p0; //expected-error{{hexadecimal floating constants require a significand}}
|
2012-02-08 21:36:33 +08:00
|
|
|
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}}
|