diff options
author | dim <dim@FreeBSD.org> | 2013-12-22 00:07:40 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2013-12-22 00:07:40 +0000 |
commit | 952eddef9aff85b1e92626e89baaf7a360e2ac85 (patch) | |
tree | df8df0b0067b381eab470a3b8f28d14a552a6340 /test/PCH/floating-literal.c | |
parent | ea266cad53e3d49771fa38103913d3ec7a166694 (diff) | |
download | FreeBSD-src-952eddef9aff85b1e92626e89baaf7a360e2ac85.zip FreeBSD-src-952eddef9aff85b1e92626e89baaf7a360e2ac85.tar.gz |
Vendor import of clang release_34 branch r197841 (effectively, 3.4 RC3):
https://llvm.org/svn/llvm-project/cfe/branches/release_34@197841
Diffstat (limited to 'test/PCH/floating-literal.c')
-rw-r--r-- | test/PCH/floating-literal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/PCH/floating-literal.c b/test/PCH/floating-literal.c index 7bf10d4..738e45a 100644 --- a/test/PCH/floating-literal.c +++ b/test/PCH/floating-literal.c @@ -7,12 +7,12 @@ // targets with 128-bit IEEE long doubles. long double foo = 1.0E4000L; -// CHECK: long double foo = 1.0E+4000L; +// CHECK: long double foo = 1.00000000000000000000000000000000004E+4000L; // Just as well check the others are still sane while we're here... double bar = 1.0E300; -// CHECK: double bar = 1.0E+300; +// CHECK: double bar = 1.0000000000000001E+300; float wibble = 1.0E40; // CHECK: float wibble = 1.0E+40; |