mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-02 03:50:17 +00:00
d21be3b4e1
(from https://sourceware.org/elfutils/, GPL/LGPL licensed)
13 lines
189 B
C
13 lines
189 B
C
// gcc -g -O2 -o implicit_pointer implicit_pointer.c
|
|
|
|
static __attribute__((noinline, noclone)) int foo (int i)
|
|
{
|
|
int *p = &i;
|
|
return *p;
|
|
}
|
|
|
|
int main (void)
|
|
{
|
|
return foo (23) - 23;
|
|
}
|