mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +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:
parent
bba534dc66
commit
104988a16a
@ -89,9 +89,13 @@ static const char *GetCurrentX86CPU() {
|
||||
}
|
||||
}
|
||||
|
||||
X86Subtarget::X86Subtarget(const Module &M, const std::string &FS)
|
||||
: stackAlignment(8), indirectExternAndWeakGlobals(false) {
|
||||
|
||||
X86Subtarget::X86Subtarget(const Module &M, const std::string &FS) {
|
||||
stackAlignment = 8;
|
||||
indirectExternAndWeakGlobals = false;
|
||||
X86SSELevel = NoMMXSSE;
|
||||
X863DNowLevel = NoThreeDNow;
|
||||
Is64Bit = false;
|
||||
|
||||
// Determine default and user specified characteristics
|
||||
std::string CPU = GetCurrentX86CPU();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user