mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
Use internal storage for command line option.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139079 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -95,12 +95,10 @@ X86TargetMachine::X86TargetMachine(const Target &T, StringRef TT,
|
||||
//===----------------------------------------------------------------------===//
|
||||
// Command line options for x86
|
||||
//===----------------------------------------------------------------------===//
|
||||
bool UseVZeroUpper;
|
||||
|
||||
static cl::opt<bool, true>
|
||||
VZeroUpper("x86-use-vzeroupper",
|
||||
static cl::opt<bool>
|
||||
UseVZeroUpper("x86-use-vzeroupper",
|
||||
cl::desc("Minimize AVX to SSE transition penalty"),
|
||||
cl::location(UseVZeroUpper), cl::init(false));
|
||||
cl::init(false));
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
// Pass Pipeline Configuration
|
||||
|
Reference in New Issue
Block a user