mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-04 08:41:49 +00:00
Don't convert {} into []!
llvm-svn: 32106
This commit is contained in:
parent
dc1a679533
commit
ea755fc9d2
@ -2386,7 +2386,7 @@ yyreduce:
|
|||||||
{
|
{
|
||||||
(yyval.Const).type = (yyvsp[-2].Type);
|
(yyval.Const).type = (yyvsp[-2].Type);
|
||||||
(yyval.Const).cnst = new std::string(*(yyvsp[-2].Type).newTy);
|
(yyval.Const).cnst = new std::string(*(yyvsp[-2].Type).newTy);
|
||||||
*(yyval.Const).cnst += " [ ]";
|
*(yyval.Const).cnst += " {}";
|
||||||
;}
|
;}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
@ -2386,7 +2386,7 @@ yyreduce:
|
|||||||
{
|
{
|
||||||
(yyval.Const).type = (yyvsp[-2].Type);
|
(yyval.Const).type = (yyvsp[-2].Type);
|
||||||
(yyval.Const).cnst = new std::string(*(yyvsp[-2].Type).newTy);
|
(yyval.Const).cnst = new std::string(*(yyvsp[-2].Type).newTy);
|
||||||
*(yyval.Const).cnst += " [ ]";
|
*(yyval.Const).cnst += " {}";
|
||||||
;}
|
;}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
@ -402,7 +402,7 @@ ConstVal: Types '[' ConstVector ']' { // Nonempty unsized arr
|
|||||||
| Types '{' '}' {
|
| Types '{' '}' {
|
||||||
$$.type = $1;
|
$$.type = $1;
|
||||||
$$.cnst = new std::string(*$1.newTy);
|
$$.cnst = new std::string(*$1.newTy);
|
||||||
*$$.cnst += " [ ]";
|
*$$.cnst += " {}";
|
||||||
}
|
}
|
||||||
| Types NULL_TOK {
|
| Types NULL_TOK {
|
||||||
$$.type = $1;
|
$$.type = $1;
|
||||||
|
@ -402,7 +402,7 @@ ConstVal: Types '[' ConstVector ']' { // Nonempty unsized arr
|
|||||||
| Types '{' '}' {
|
| Types '{' '}' {
|
||||||
$$.type = $1;
|
$$.type = $1;
|
||||||
$$.cnst = new std::string(*$1.newTy);
|
$$.cnst = new std::string(*$1.newTy);
|
||||||
*$$.cnst += " [ ]";
|
*$$.cnst += " {}";
|
||||||
}
|
}
|
||||||
| Types NULL_TOK {
|
| Types NULL_TOK {
|
||||||
$$.type = $1;
|
$$.type = $1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user