projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bba534d
)
initialize all instance vars
author
Chris Lattner
<sabre@nondot.org>
Fri, 27 Jan 2006 22:37:09 +0000
(22:37 +0000)
committer
Chris Lattner
<sabre@nondot.org>
Fri, 27 Jan 2006 22:37:09 +0000
(22:37 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25711
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Target/X86/X86Subtarget.cpp
patch
|
blob
|
history
diff --git
a/lib/Target/X86/X86Subtarget.cpp
b/lib/Target/X86/X86Subtarget.cpp
index 32574d10536ed864c300ebf4c2eafcb483445ec9..dc716143ebb06d8fc80facf5ea788bfbe0cae166 100644
(file)
--- a/
lib/Target/X86/X86Subtarget.cpp
+++ b/
lib/Target/X86/X86Subtarget.cpp
@@
-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();