Skip to content

Commit

Permalink
[BOLT] Disable trapping on AVX-512 by default
Browse files Browse the repository at this point in the history
Summary:

(cherry picked from FBD22118562)
  • Loading branch information
maksfb committed Jun 18, 2020
1 parent 0ce0bce commit e7c3464
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bolt/src/BinaryFunction.cpp
Expand Up @@ -137,8 +137,8 @@ TimeBuild("time-build",
cl::opt<bool>
TrapOnAVX512("trap-avx512",
cl::desc("in relocation mode trap upon entry to any function that uses "
"AVX-512 instructions (on by default)"),
cl::init(true),
"AVX-512 instructions"),
cl::init(false),
cl::ZeroOrMore,
cl::Hidden,
cl::cat(BoltCategory));
Expand Down

0 comments on commit e7c3464

Please sign in to comment.