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 | ab1a0354ecff51d27098d6f11fbeabc65dec7123 (patch) | |
tree | 24895ea5a392776d44c6403d227f8190259c2805 /lib/Target/PowerPC/PPCSubtarget.cpp | |
parent | 2e78b7879dfb423354278d58e0a14a99fefbe24b (diff) |
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/PowerPC/PPCSubtarget.cpp')
-rw-r--r-- | lib/Target/PowerPC/PPCSubtarget.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/Target/PowerPC/PPCSubtarget.cpp b/lib/Target/PowerPC/PPCSubtarget.cpp index 030dc7a17c..10373cb427 100644 --- a/lib/Target/PowerPC/PPCSubtarget.cpp +++ b/lib/Target/PowerPC/PPCSubtarget.cpp @@ -83,8 +83,6 @@ PPCSubtarget::PPCSubtarget(const TargetMachine &tm, const Module &M, // If we are generating code for ppc64, verify that options make sense. if (is64Bit) { if (!has64BitSupport()) { - cerr << "PPC: Generation of 64-bit code for a 32-bit processor " - << "requested. Ignoring 32-bit processor feature.\n"; Has64BitSupport = true; } // Silently force 64-bit register use on ppc64. @@ -94,8 +92,6 @@ PPCSubtarget::PPCSubtarget(const TargetMachine &tm, const Module &M, // If the user requested use of 64-bit regs, but the cpu selected doesn't // support it, warn and ignore. if (use64BitRegs() && !has64BitSupport()) { - cerr << "PPC: 64-bit registers requested on CPU without support. " - << "Disabling 64-bit register use.\n"; Use64BitRegs = false; } |