summaryrefslogtreecommitdiffstats
path: root/llvm/lib/AsmParser/Lexer.l.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
commit007aa378adced52180f37936f3938bbcaaf6d176 (patch)
treede453b6cc3a1ef38ec69e231e353ee2a52044557 /llvm/lib/AsmParser/Lexer.l.cvs
parent899cc5661266483323eed68195cbe25dcef31159 (diff)
downloadbcm5719-llvm-007aa378adced52180f37936f3938bbcaaf6d176.tar.gz
bcm5719-llvm-007aa378adced52180f37936f3938bbcaaf6d176.zip
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. llvm-svn: 42865
Diffstat (limited to 'llvm/lib/AsmParser/Lexer.l.cvs')
-rw-r--r--llvm/lib/AsmParser/Lexer.l.cvs2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/AsmParser/Lexer.l.cvs b/llvm/lib/AsmParser/Lexer.l.cvs
index 73e9c547712..0591cd99f3f 100644
--- a/llvm/lib/AsmParser/Lexer.l.cvs
+++ b/llvm/lib/AsmParser/Lexer.l.cvs
@@ -487,7 +487,7 @@ shufflevector { RET_TOK(OtherOpVal, ShuffleVector, SHUFFLEVECTOR); }
}
{HexFP128Constant} { 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;
}
{HexPPC128Constant} { uint64_t Pair[2];
OpenPOWER on IntegriCloud