mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-08 15:06:08 +00:00

This recommits the patch, now that I verified that the bot instability is due to something else. Sorry for the noise. llvm-svn: 323879
12 lines
94 B
C
12 lines
94 B
C
extern int f();
|
|
|
|
void g() {
|
|
int y = 14;
|
|
int x = f();
|
|
}
|
|
|
|
int main() {
|
|
g();
|
|
return 0;
|
|
}
|