Benjamin Kramer | 0b495cd | 2010-06-25 12:48:07 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -verify -pedantic %s |
Douglas Gregor | 4671730 | 2011-10-12 18:51:02 +0000 | [diff] [blame] | 2 | // RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify -pedantic %s |
| 3 | float f = 0x1p+1; // expected-warning{{hexadecimal floating constants are a C99 feature}} |
Aaron Ballman | b534a9e | 2012-02-07 13:46:03 +0000 | [diff] [blame] | 4 | double e = 0x.p0; //expected-error{{hexadecimal floating constants require a significand}} |
Aaron Ballman | 66b0eba | 2012-02-08 13:36:33 +0000 | [diff] [blame] | 5 | double d = 0x.2p2; // expected-warning{{hexadecimal floating constants are a C99 feature}} |
| 6 | float g = 0x1.2p2; // expected-warning{{hexadecimal floating constants are a C99 feature}} |
| 7 | double h = 0x1.p2; // expected-warning{{hexadecimal floating constants are a C99 feature}} |