update comment

llvm-svn: 37282
This commit is contained in:
Chris Lattner 2007-05-22 06:56:32 +00:00
parent 31ab0ed37f
commit 77119f43af
3 changed files with 3 additions and 3 deletions

View File

@ -1946,7 +1946,7 @@ YY_RULE_SETUP
#line 361 "/Users/sabre/cvs/llvm/lib/AsmParser/Lexer.l"
{
yytext[strlen(yytext)-1] = 0; // nuke end quote
llvmAsmlval.StrVal = strdup(yytext+2); // Nuke @, quote
llvmAsmlval.StrVal = strdup(yytext+2); // Nuke %, quote
return PCTSTRINGCONSTANT;
}
YY_BREAK

View File

@ -360,7 +360,7 @@ shufflevector { RET_TOK(OtherOpVal, ShuffleVector, SHUFFLEVECTOR); }
{PctStringConstant} {
yytext[strlen(yytext)-1] = 0; // nuke end quote
llvmAsmlval.StrVal = strdup(yytext+2); // Nuke @, quote
llvmAsmlval.StrVal = strdup(yytext+2); // Nuke %, quote
return PCTSTRINGCONSTANT;
}
{PInteger} { int len = strlen(yytext);

View File

@ -360,7 +360,7 @@ shufflevector { RET_TOK(OtherOpVal, ShuffleVector, SHUFFLEVECTOR); }
{PctStringConstant} {
yytext[strlen(yytext)-1] = 0; // nuke end quote
llvmAsmlval.StrVal = strdup(yytext+2); // Nuke @, quote
llvmAsmlval.StrVal = strdup(yytext+2); // Nuke %, quote
return PCTSTRINGCONSTANT;
}
{PInteger} { int len = strlen(yytext);