mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Regenerate
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32944 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
eb0d1d3508
commit
a7c46fa921
@ -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…
Reference in New Issue
Block a user