mirror of
https://github.com/encounter/object-testfiles.git
synced 2026-07-10 12:18:40 -07:00
15 lines
196 B
C++
15 lines
196 B
C++
// Source: https://reviews.llvm.org/D84825#2183197
|
|
__attribute__((noinline)) void f1() { }
|
|
void f2() {
|
|
int i = 3;
|
|
f1();
|
|
i = 7;
|
|
f1();
|
|
}
|
|
int main() {
|
|
int i = 3;
|
|
f1();
|
|
i = 7;
|
|
f1();
|
|
}
|