mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-07 12:28:24 +00:00
initialize all instance vars
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25711 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -89,9 +89,13 @@ static const char *GetCurrentX86CPU() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
X86Subtarget::X86Subtarget(const Module &M, const std::string &FS)
|
X86Subtarget::X86Subtarget(const Module &M, const std::string &FS) {
|
||||||
: stackAlignment(8), indirectExternAndWeakGlobals(false) {
|
stackAlignment = 8;
|
||||||
|
indirectExternAndWeakGlobals = false;
|
||||||
|
X86SSELevel = NoMMXSSE;
|
||||||
|
X863DNowLevel = NoThreeDNow;
|
||||||
|
Is64Bit = false;
|
||||||
|
|
||||||
// Determine default and user specified characteristics
|
// Determine default and user specified characteristics
|
||||||
std::string CPU = GetCurrentX86CPU();
|
std::string CPU = GetCurrentX86CPU();
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user