mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-05-13 17:38:39 +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:
|
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);
|
||||||
;}
|
;}
|
||||||
|
@ -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);
|
||||||
;}
|
;}
|
||||||
|
@ -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;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user