aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-08-07 21:39:39 +0000
committerChris Lattner <sabre@nondot.org>2002-08-07 21:39:39 +0000
commit075f028b774c4d16b35a9e897d7b331eb8298e40 (patch)
tree578c7afa37e14b6c880344effa4b998afc50f76f
parenta4ff0d46111933d16b8f66e155432023a01525d0 (diff)
Fix breakage in the build
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3258 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/SparcV9/SparcV9TargetMachine.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/Target/SparcV9/SparcV9TargetMachine.cpp b/lib/Target/SparcV9/SparcV9TargetMachine.cpp
index 7ec76fc052..0908f85da2 100644
--- a/lib/Target/SparcV9/SparcV9TargetMachine.cpp
+++ b/lib/Target/SparcV9/SparcV9TargetMachine.cpp
@@ -182,7 +182,7 @@ void UltraSparc::addPassesToEmitAssembly(PassManager &PM, std::ostream &Out) {
PM.add(createPrologEpilogCodeInserter(*this));
- PM.add(MappingInfoForFunction(Out));
+ //PM.add(MappingInfoForFunction(Out));
// Output assembly language to the .s file. Assembly emission is split into
// two parts: Function output and Global value output. This is because
@@ -198,7 +198,6 @@ void UltraSparc::addPassesToEmitAssembly(PassManager &PM, std::ostream &Out) {
// Emit bytecode to the sparc assembly file into its special section next
PM.add(getEmitBytecodeToAsmPass(Out));
- PM.add(getFunctionInfo(Out));
-
+ //PM.add(getFunctionInfo(Out));
}