Skip to content

Commit

Permalink
Disable frame-pointer-optimiation on Linux (#48660)
Browse files Browse the repository at this point in the history
(cherry picked from commit 9c4a40c)
  • Loading branch information
vchuravy authored and KristofferC committed Feb 20, 2023
1 parent 6213bb8 commit d43d055
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/codegen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#if defined(_CPU_X86_)
#define JL_NEED_FLOATTEMP_VAR 1
#endif
#if defined(_OS_WINDOWS_) || defined(_OS_FREEBSD_) || defined(_COMPILER_MSAN_ENABLED_)
#if defined(_OS_LINUX_) || defined(_OS_WINDOWS_) || defined(_OS_FREEBSD_) || defined(_COMPILER_MSAN_ENABLED_)
#define JL_DISABLE_FPO
#endif

Expand Down

0 comments on commit d43d055

Please sign in to comment.