forked from OSchip/llvm-project
Fix IsLinux being uninitialized on non-Linux targets.
llvm-svn: 50660
This commit is contained in:
parent
86cb31862f
commit
b42c28c3dc
|
@ -241,6 +241,7 @@ X86Subtarget::X86Subtarget(const Module &M, const std::string &FS, bool is64Bit)
|
|||
, X863DNowLevel(NoThreeDNow)
|
||||
, HasX86_64(false)
|
||||
, DarwinVers(0)
|
||||
, IsLinux(false)
|
||||
, stackAlignment(8)
|
||||
// FIXME: this is a known good value for Yonah. How about others?
|
||||
, MaxInlineSizeThreshold(128)
|
||||
|
|
Loading…
Reference in New Issue