mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-16 13:18:12 +01:00
Fix crasher test for gcc >= 8 when using -O2 or -O3. (#67)
This commit is contained in:
parent
7f04c2032f
commit
54c1afdd51
1 changed files with 5 additions and 0 deletions
|
@ -87,6 +87,11 @@ write_maps(char *fname)
|
|||
#endif
|
||||
|
||||
#ifdef __GNUC__
|
||||
#ifndef __clang__
|
||||
// Gcc >= 8 became too good at inlining aliase c into b when using -O2 or -O3,
|
||||
// so force -O1 in all cases, otherwise a frame will be missing in the tests.
|
||||
#pragma GCC optimize "-O1"
|
||||
#endif
|
||||
int c(int x) NOINLINE ALIAS(b);
|
||||
#define compiler_barrier() asm volatile("");
|
||||
#else
|
||||
|
|
Loading…
Reference in a new issue