mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
70d18ecfa1
As expected, the binary_expr() cleanup broke multiple function calls in a single expression.
18 lines
157 B
R
18 lines
157 B
R
int foo (int i)
|
|
{
|
|
return i;
|
|
}
|
|
|
|
int func (int a, int b)
|
|
{
|
|
local int x;
|
|
|
|
x = foo (a) + foo (b);
|
|
return x;
|
|
};
|
|
|
|
int
|
|
main ()
|
|
{
|
|
return func (1,3) != 1 + 3;
|
|
}
|