mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 17:32:36 +00:00
Regenerate
llvm-svn: 32944
This commit is contained in:
parent
fb503a19e7
commit
227f5ff545
@ -3357,7 +3357,7 @@ yyreduce:
|
||||
case 167:
|
||||
#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();
|
||||
(yyval.String) = (yyvsp[-6].String);
|
||||
;}
|
||||
@ -3366,7 +3366,7 @@ yyreduce:
|
||||
case 168:
|
||||
#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();
|
||||
(yyval.String) = (yyvsp[-6].String);
|
||||
;}
|
||||
|
@ -3357,7 +3357,7 @@ yyreduce:
|
||||
case 167:
|
||||
#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();
|
||||
(yyval.String) = (yyvsp[-6].String);
|
||||
;}
|
||||
@ -3366,7 +3366,7 @@ yyreduce:
|
||||
case 168:
|
||||
#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();
|
||||
(yyval.String) = (yyvsp[-6].String);
|
||||
;}
|
||||
|
@ -1160,12 +1160,12 @@ ConstExpr: CastOps '(' ConstVal TO Types ')' {
|
||||
$$ = $1;
|
||||
}
|
||||
| ICMP IPredicates '(' ConstVal ',' ConstVal ')' {
|
||||
*$1 += "(" + *$2 + "," + *$4.cnst + "," + *$6.cnst + ")";
|
||||
*$1 += " " + *$2 + " (" + *$4.cnst + "," + *$6.cnst + ")";
|
||||
delete $2; $4.destroy(); $6.destroy();
|
||||
$$ = $1;
|
||||
}
|
||||
| FCMP FPredicates '(' ConstVal ',' ConstVal ')' {
|
||||
*$1 += "(" + *$2 + "," + *$4.cnst + "," + *$6.cnst + ")";
|
||||
*$1 += " " + *$2 + " (" + *$4.cnst + "," + *$6.cnst + ")";
|
||||
delete $2; $4.destroy(); $6.destroy();
|
||||
$$ = $1;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user