[BOLT] Disable trapping on AVX-512 by default

Summary:

(cherry picked from FBD22118562)
This commit is contained in:
Maksim Panchenko 2020-06-18 09:55:05 -07:00
parent 0ce0bce9e7
commit e7c3464226
1 changed files with 2 additions and 2 deletions

View File

@ -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));