mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-24 12:35:55 +08:00
9 lines
127 B
C
9 lines
127 B
C
|
extern void foobar (void);
|
||
|
int
|
||
|
main (int argc, char **argv)
|
||
|
{
|
||
|
if (!__builtin_constant_p (argc))
|
||
|
foobar ();
|
||
|
return 0;
|
||
|
}
|