summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/X86/X86TargetMachine.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-10-08 22:41:46 +0000
committerChris Lattner <sabre@nondot.org>2004-10-08 22:41:46 +0000
commit23c8d0b65a8799eae4655cf6b2131a678fefab70 (patch)
treedfb5497d4d3483214af1d089aea1127e42b59f66 /llvm/lib/Target/X86/X86TargetMachine.cpp
parent97ea4206f7b56b049cfdf98fc0d9fa63519d534f (diff)
downloadbcm5719-llvm-23c8d0b65a8799eae4655cf6b2131a678fefab70.tar.gz
bcm5719-llvm-23c8d0b65a8799eae4655cf6b2131a678fefab70.zip
The person who was planning to add SSE support isn't anymore, so disable
the -sse* options (to avoid misleading people). Also, the stack alignment of the target doesn't depend on whether SSE is eventually implemented, so remove a comment. llvm-svn: 16860
Diffstat (limited to 'llvm/lib/Target/X86/X86TargetMachine.cpp')
-rw-r--r--llvm/lib/Target/X86/X86TargetMachine.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/X86TargetMachine.cpp b/llvm/lib/Target/X86/X86TargetMachine.cpp
index 06cbc49abf3..65df2d93dfa 100644
--- a/llvm/lib/Target/X86/X86TargetMachine.cpp
+++ b/llvm/lib/Target/X86/X86TargetMachine.cpp
@@ -35,6 +35,7 @@ namespace {
cl::desc("Disable the X86 asm printer, for use "
"when profiling the code generator."));
+#if 0
// FIXME: This should eventually be handled with target triples and
// subtarget support!
cl::opt<X86VectorEnum, true>
@@ -46,6 +47,7 @@ namespace {
clEnumValN(SSE3, "sse3", " Enable SSE, SSE2, and SSE3 support"),
clEnumValEnd),
cl::location(X86Vector), cl::init(NoSSE));
+#endif
// Register the target.
RegisterTarget<X86TargetMachine> X("x86", " IA-32 (Pentium and above)");
@@ -74,7 +76,7 @@ unsigned X86TargetMachine::getModuleMatchQuality(const Module &M) {
///
X86TargetMachine::X86TargetMachine(const Module &M, IntrinsicLowering *IL)
: TargetMachine("X86", IL, true, 4, 4, 4, 4, 4),
- FrameInfo(TargetFrameInfo::StackGrowsDown, 8/*16 for SSE*/, -4),
+ FrameInfo(TargetFrameInfo::StackGrowsDown, 8, -4),
JITInfo(*this) {
}
OpenPOWER on IntegriCloud