initialize all instance vars

llvm-svn: 25711
This commit is contained in:
Chris Lattner 2006-01-27 22:37:09 +00:00
parent 4d967a4cbb
commit dbfc299915
1 changed files with 7 additions and 3 deletions

View File

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