mirror of
https://github.com/RPCS3/llvm.git
synced 2025-05-24 14:26:48 +00:00

Differential Revision: https://reviews.llvm.org/D23521 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@279161 91177308-0d34-0410-b5e6-96231b3b80d8
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();
|
|
}
|