diff options
author | Akira Hatanaka <ahatanaka@mips.com> | 2012-01-10 22:40:09 +0000 |
---|---|---|
committer | Akira Hatanaka <ahatanaka@mips.com> | 2012-01-10 22:40:09 +0000 |
commit | 428f5b2008784ea055760744a212d5684234ae44 (patch) | |
tree | 47daa2169d890592e7a1608503f1d0e377918536 /clang/lib/AST | |
parent | 8ffc4f11ceaa4e5da5d18e3bab8d124cebb116df (diff) | |
download | bcm5719-llvm-428f5b2008784ea055760744a212d5684234ae44.tar.gz bcm5719-llvm-428f5b2008784ea055760744a212d5684234ae44.zip |
Add field IsIEEE in FloatingLiteral to distinguish between different 128-bit
floating point formats.
llvm-svn: 147887
Diffstat (limited to 'clang/lib/AST')
-rw-r--r-- | clang/lib/AST/Expr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/AST/Expr.cpp b/clang/lib/AST/Expr.cpp index bbf54112c85..f87d60f7fbe 100644 --- a/clang/lib/AST/Expr.cpp +++ b/clang/lib/AST/Expr.cpp @@ -476,7 +476,7 @@ FloatingLiteral::Create(ASTContext &C, const llvm::APFloat &V, FloatingLiteral * FloatingLiteral::Create(ASTContext &C, EmptyShell Empty) { - return new (C) FloatingLiteral(Empty); + return new (C) FloatingLiteral(C, Empty); } /// getValueAsApproximateDouble - This returns the value as an inaccurate |