summaryrefslogtreecommitdiff
path: root/tools/bugpoint
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2011-10-27 22:56:32 +0000
committerDan Gohman <gohman@apple.com>2011-10-27 22:56:32 +0000
commit33ba8b0e96acde0d8ab1ffc565a5ef4c8b6b6ac2 (patch)
tree19356b63d7d9c64977cbfdac0d82e272b117cfbf /tools/bugpoint
parent03e03b098462c2715598ca96298110b63c57a2d3 (diff)
downloadllvm-33ba8b0e96acde0d8ab1ffc565a5ef4c8b6b6ac2.tar.gz
llvm-33ba8b0e96acde0d8ab1ffc565a5ef4c8b6b6ac2.tar.bz2
llvm-33ba8b0e96acde0d8ab1ffc565a5ef4c8b6b6ac2.tar.xz
Remove the Alpha backend.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143164 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/bugpoint')
-rw-r--r--tools/bugpoint/ToolRunner.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/bugpoint/ToolRunner.cpp b/tools/bugpoint/ToolRunner.cpp
index 0d98262b43..c2d3720660 100644
--- a/tools/bugpoint/ToolRunner.cpp
+++ b/tools/bugpoint/ToolRunner.cpp
@@ -920,8 +920,7 @@ int GCC::MakeSharedObject(const std::string &InputFile, FileType fileType,
} else
GCCArgs.push_back("-shared"); // `-shared' for Linux/X86, maybe others
- if ((TargetTriple.getArch() == Triple::alpha) ||
- (TargetTriple.getArch() == Triple::x86_64))
+ if (TargetTriple.getArch() == Triple::x86_64)
GCCArgs.push_back("-fPIC"); // Requires shared objs to contain PIC
if (TargetTriple.getArch() == Triple::sparc)