Skip to content

Commit 062bfa8

Browse files
committed
C front-end: typecheck conditional operator over string literal and 0
0 is a valid null-pointer constant, even in the absence of an explicit type cast.
1 parent a531056 commit 062bfa8

File tree

3 files changed

+28
-0
lines changed

3 files changed

+28
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
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 numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
CORE
2+
main.c
3+
4+
^EXIT=0$
5+
^SIGNAL=0$
6+
--
7+
^warning: ignoring
8+
^CONVERSION ERROR$

src/ansi-c/c_typecheck_expr.cpp

+14
Original file line numberDiff line numberDiff line change
@@ -1594,6 +1594,20 @@ void c_typecheck_baset::typecheck_expr_trinary(if_exprt &expr)
15941594
return;
15951595
}
15961596

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+
15971611
if(operands[1].type().id()==ID_pointer &&
15981612
operands[2].type().id()!=ID_pointer)
15991613
implicit_typecast(operands[2], operands[1].type());

0 commit comments

Comments
 (0)