Regenerate

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32944 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2007-01-06 00:23:53 +00:00
parent eb0d1d3508
commit a7c46fa921
3 changed files with 6 additions and 6 deletions

View File

@ -3357,7 +3357,7 @@ yyreduce:
case 167: case 167:
#line 1162 "/proj/llvm/llvm-3/tools/llvm-upgrade/UpgradeParser.y" #line 1162 "/proj/llvm/llvm-3/tools/llvm-upgrade/UpgradeParser.y"
{ {
*(yyvsp[-6].String) += "(" + *(yyvsp[-5].String) + "," + *(yyvsp[-3].Const).cnst + "," + *(yyvsp[-1].Const).cnst + ")"; *(yyvsp[-6].String) += " " + *(yyvsp[-5].String) + " (" + *(yyvsp[-3].Const).cnst + "," + *(yyvsp[-1].Const).cnst + ")";
delete (yyvsp[-5].String); (yyvsp[-3].Const).destroy(); (yyvsp[-1].Const).destroy(); delete (yyvsp[-5].String); (yyvsp[-3].Const).destroy(); (yyvsp[-1].Const).destroy();
(yyval.String) = (yyvsp[-6].String); (yyval.String) = (yyvsp[-6].String);
;} ;}
@ -3366,7 +3366,7 @@ yyreduce:
case 168: case 168:
#line 1167 "/proj/llvm/llvm-3/tools/llvm-upgrade/UpgradeParser.y" #line 1167 "/proj/llvm/llvm-3/tools/llvm-upgrade/UpgradeParser.y"
{ {
*(yyvsp[-6].String) += "(" + *(yyvsp[-5].String) + "," + *(yyvsp[-3].Const).cnst + "," + *(yyvsp[-1].Const).cnst + ")"; *(yyvsp[-6].String) += " " + *(yyvsp[-5].String) + " (" + *(yyvsp[-3].Const).cnst + "," + *(yyvsp[-1].Const).cnst + ")";
delete (yyvsp[-5].String); (yyvsp[-3].Const).destroy(); (yyvsp[-1].Const).destroy(); delete (yyvsp[-5].String); (yyvsp[-3].Const).destroy(); (yyvsp[-1].Const).destroy();
(yyval.String) = (yyvsp[-6].String); (yyval.String) = (yyvsp[-6].String);
;} ;}

View File

@ -3357,7 +3357,7 @@ yyreduce:
case 167: case 167:
#line 1162 "/proj/llvm/llvm-3/tools/llvm-upgrade/UpgradeParser.y" #line 1162 "/proj/llvm/llvm-3/tools/llvm-upgrade/UpgradeParser.y"
{ {
*(yyvsp[-6].String) += "(" + *(yyvsp[-5].String) + "," + *(yyvsp[-3].Const).cnst + "," + *(yyvsp[-1].Const).cnst + ")"; *(yyvsp[-6].String) += " " + *(yyvsp[-5].String) + " (" + *(yyvsp[-3].Const).cnst + "," + *(yyvsp[-1].Const).cnst + ")";
delete (yyvsp[-5].String); (yyvsp[-3].Const).destroy(); (yyvsp[-1].Const).destroy(); delete (yyvsp[-5].String); (yyvsp[-3].Const).destroy(); (yyvsp[-1].Const).destroy();
(yyval.String) = (yyvsp[-6].String); (yyval.String) = (yyvsp[-6].String);
;} ;}
@ -3366,7 +3366,7 @@ yyreduce:
case 168: case 168:
#line 1167 "/proj/llvm/llvm-3/tools/llvm-upgrade/UpgradeParser.y" #line 1167 "/proj/llvm/llvm-3/tools/llvm-upgrade/UpgradeParser.y"
{ {
*(yyvsp[-6].String) += "(" + *(yyvsp[-5].String) + "," + *(yyvsp[-3].Const).cnst + "," + *(yyvsp[-1].Const).cnst + ")"; *(yyvsp[-6].String) += " " + *(yyvsp[-5].String) + " (" + *(yyvsp[-3].Const).cnst + "," + *(yyvsp[-1].Const).cnst + ")";
delete (yyvsp[-5].String); (yyvsp[-3].Const).destroy(); (yyvsp[-1].Const).destroy(); delete (yyvsp[-5].String); (yyvsp[-3].Const).destroy(); (yyvsp[-1].Const).destroy();
(yyval.String) = (yyvsp[-6].String); (yyval.String) = (yyvsp[-6].String);
;} ;}

View File

@ -1160,12 +1160,12 @@ ConstExpr: CastOps '(' ConstVal TO Types ')' {
$$ = $1; $$ = $1;
} }
| ICMP IPredicates '(' ConstVal ',' ConstVal ')' { | ICMP IPredicates '(' ConstVal ',' ConstVal ')' {
*$1 += "(" + *$2 + "," + *$4.cnst + "," + *$6.cnst + ")"; *$1 += " " + *$2 + " (" + *$4.cnst + "," + *$6.cnst + ")";
delete $2; $4.destroy(); $6.destroy(); delete $2; $4.destroy(); $6.destroy();
$$ = $1; $$ = $1;
} }
| FCMP FPredicates '(' ConstVal ',' ConstVal ')' { | FCMP FPredicates '(' ConstVal ',' ConstVal ')' {
*$1 += "(" + *$2 + "," + *$4.cnst + "," + *$6.cnst + ")"; *$1 += " " + *$2 + " (" + *$4.cnst + "," + *$6.cnst + ")";
delete $2; $4.destroy(); $6.destroy(); delete $2; $4.destroy(); $6.destroy();
$$ = $1; $$ = $1;
} }