File tree 3 files changed +28
-0
lines changed
regression/ansi-c/null_pointer_constant1
3 files changed +28
-0
lines changed Original file line number Diff line number Diff line change
1
+ int main (int argc , char * argv [])
2
+ {
3
+ // Literal 0 is a valid null-pointer constant, which makes this conditional
4
+ // operator well-formed.
5
+ char * maybe_str = argc > 1 ? "args" : 0 ;
6
+ }
Original file line number Diff line number Diff line change
1
+ CORE
2
+ main.c
3
+
4
+ ^EXIT=0$
5
+ ^SIGNAL=0$
6
+ --
7
+ ^warning: ignoring
8
+ ^CONVERSION ERROR$
Original file line number Diff line number Diff line change @@ -1594,6 +1594,20 @@ void c_typecheck_baset::typecheck_expr_trinary(if_exprt &expr)
1594
1594
return ;
1595
1595
}
1596
1596
1597
+ if (operands[1 ].id () == ID_string_constant)
1598
+ {
1599
+ implicit_typecast (
1600
+ operands[1 ],
1601
+ pointer_type (to_array_type (operands[1 ].type ()).element_type ()));
1602
+ }
1603
+
1604
+ if (operands[2 ].id () == ID_string_constant)
1605
+ {
1606
+ implicit_typecast (
1607
+ operands[2 ],
1608
+ pointer_type (to_array_type (operands[2 ].type ()).element_type ()));
1609
+ }
1610
+
1597
1611
if (operands[1 ].type ().id ()==ID_pointer &&
1598
1612
operands[2 ].type ().id ()!=ID_pointer)
1599
1613
implicit_typecast (operands[2 ], operands[1 ].type ());
You can’t perform that action at this time.
0 commit comments