You've already forked object-testfiles
mirror of
https://github.com/encounter/object-testfiles.git
synced 2026-03-30 11:32:26 -07:00
76d453e88c
Different linkers use different values for the tombstones.
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();
|
|
}
|