aboutsummaryrefslogtreecommitdiff
path: root/lib/AsmParser/Lexer.cpp.cvs
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2007-10-11 18:07:22 +0000
committerDale Johannesen <dalej@apple.com>2007-10-11 18:07:22 +0000
commita471c2ecda37cd1bae0d94e832f002caa7b63216 (patch)
tree5585aa5c69106bf208bebbc089dccd54bd09154b /lib/AsmParser/Lexer.cpp.cvs
parentf9193de25bcd2c7de6c7d60ec5992f546907231a (diff)
Next PPC long double bits. First cut at constants.
No compile-time support for constant operations yet, just format transformations. Make readers and writers work. Split constants into 2 doubles in Legalize. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42865 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AsmParser/Lexer.cpp.cvs')
-rw-r--r--lib/AsmParser/Lexer.cpp.cvs2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/AsmParser/Lexer.cpp.cvs b/lib/AsmParser/Lexer.cpp.cvs
index 6e2819f3f5..536d569648 100644
--- a/lib/AsmParser/Lexer.cpp.cvs
+++ b/lib/AsmParser/Lexer.cpp.cvs
@@ -2199,7 +2199,7 @@ YY_RULE_SETUP
#line 488 "/Volumes/MacOS9/gcc/llvm/lib/AsmParser/Lexer.l"
{ uint64_t Pair[2];
HexToIntPair(yytext+3, Pair);
- llvmAsmlval.FPVal = new APFloat(APInt(128, 2, Pair));
+ llvmAsmlval.FPVal = new APFloat(APInt(128, 2, Pair), true);
return FPVAL;
}
YY_BREAK