diff options
author | Dale Johannesen <dalej@apple.com> | 2008-02-15 18:09:51 +0000 |
---|---|---|
committer | Dale Johannesen <dalej@apple.com> | 2008-02-15 18:09:51 +0000 |
commit | b636d4dc05b353e2801653174d1d20b1a02706a7 (patch) | |
tree | 24895ea5a392776d44c6403d227f8190259c2805 /lib/Target/X86/X86Subtarget.cpp | |
parent | 538db766993d8c43be1f3d3f2db447c42da4db3b (diff) | |
download | external_llvm-b636d4dc05b353e2801653174d1d20b1a02706a7.zip external_llvm-b636d4dc05b353e2801653174d1d20b1a02706a7.tar.gz external_llvm-b636d4dc05b353e2801653174d1d20b1a02706a7.tar.bz2 |
Remove warning about 64-bit code on processor
that doesn't support it. Per Chris.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47162 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86Subtarget.cpp')
-rw-r--r-- | lib/Target/X86/X86Subtarget.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/Target/X86/X86Subtarget.cpp b/lib/Target/X86/X86Subtarget.cpp index abd756c..fb46cfc 100644 --- a/lib/Target/X86/X86Subtarget.cpp +++ b/lib/Target/X86/X86Subtarget.cpp @@ -235,12 +235,6 @@ X86Subtarget::X86Subtarget(const Module &M, const std::string &FS, bool is64Bit) // If feature string is not empty, parse features string. std::string CPU = GetCurrentX86CPU(); ParseSubtargetFeatures(FS, CPU); - - if (Is64Bit && !HasX86_64) - cerr << "Warning: Generation of 64-bit code for a 32-bit processor " - << "requested.\n"; - if (Is64Bit && X86SSELevel < SSE2) - cerr << "Warning: 64-bit processors all have at least SSE2.\n"; } else { // Otherwise, use CPUID to auto-detect feature set. AutoDetectSubtargetFeatures(); |