mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-12 04:26:43 +00:00
10 lines
89 B
C
10 lines
89 B
C
int a = 1;
|
|
int foo() {
|
|
return a;
|
|
}
|
|
|
|
int main() {
|
|
int *b = &a;
|
|
return *b + foo();
|
|
}
|