diff options
author | Dale Johannesen <dalej@apple.com> | 2007-09-12 03:31:28 +0000 |
---|---|---|
committer | Dale Johannesen <dalej@apple.com> | 2007-09-12 03:31:28 +0000 |
commit | 100410af133f319cfcea9bffb1f341d9b362aa44 (patch) | |
tree | d552c69d0ef2c45bb5839dcb0ca492f585a3db4e /llvm/lib/AsmParser/Lexer.cpp.cvs | |
parent | 028084efe5a297af30f17ab0f82d3bf86199372f (diff) | |
download | bcm5719-llvm-100410af133f319cfcea9bffb1f341d9b362aa44.tar.gz bcm5719-llvm-100410af133f319cfcea9bffb1f341d9b362aa44.zip |
Generated files for previous patch.
llvm-svn: 41876
Diffstat (limited to 'llvm/lib/AsmParser/Lexer.cpp.cvs')
-rw-r--r-- | llvm/lib/AsmParser/Lexer.cpp.cvs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/AsmParser/Lexer.cpp.cvs b/llvm/lib/AsmParser/Lexer.cpp.cvs index c25333adeac..6e2819f3f55 100644 --- a/llvm/lib/AsmParser/Lexer.cpp.cvs +++ b/llvm/lib/AsmParser/Lexer.cpp.cvs @@ -2181,7 +2181,7 @@ YY_RULE_SETUP case 146: YY_RULE_SETUP #line 480 "/Volumes/MacOS9/gcc/llvm/lib/AsmParser/Lexer.l" -{ llvmAsmlval.FPVal = new APFloat(HexToFP(yytext)); +{ llvmAsmlval.FPVal = new APFloat(HexToFP(yytext+2)); return FPVAL; } YY_BREAK @@ -2189,7 +2189,7 @@ case 147: YY_RULE_SETUP #line 483 "/Volumes/MacOS9/gcc/llvm/lib/AsmParser/Lexer.l" { uint64_t Pair[2]; - HexToIntPair(yytext, Pair); + HexToIntPair(yytext+3, Pair); llvmAsmlval.FPVal = new APFloat(APInt(80, 2, Pair)); return FPVAL; } @@ -2198,7 +2198,7 @@ case 148: YY_RULE_SETUP #line 488 "/Volumes/MacOS9/gcc/llvm/lib/AsmParser/Lexer.l" { uint64_t Pair[2]; - HexToIntPair(yytext, Pair); + HexToIntPair(yytext+3, Pair); llvmAsmlval.FPVal = new APFloat(APInt(128, 2, Pair)); return FPVAL; } @@ -2207,7 +2207,7 @@ case 149: YY_RULE_SETUP #line 493 "/Volumes/MacOS9/gcc/llvm/lib/AsmParser/Lexer.l" { uint64_t Pair[2]; - HexToIntPair(yytext, Pair); + HexToIntPair(yytext+3, Pair); llvmAsmlval.FPVal = new APFloat(APInt(128, 2, Pair)); return FPVAL; } |