diff options
author | Jim Laskey <jlaskey@mac.com> | 2006-11-07 20:53:05 +0000 |
---|---|---|
committer | Jim Laskey <jlaskey@mac.com> | 2006-11-07 20:53:05 +0000 |
commit | fffcd69709142c1afef256fff21585ba642734a8 (patch) | |
tree | 37d1045f709e349de74ed77fc6827fe0366166e6 /lib/CodeGen/MachineDebugInfo.cpp | |
parent | 1bce1fb054d792e7377ac4ede8c34b26cc267735 (diff) |
Missed a label map, reverting till covered.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31512 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineDebugInfo.cpp')
-rw-r--r-- | lib/CodeGen/MachineDebugInfo.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/CodeGen/MachineDebugInfo.cpp b/lib/CodeGen/MachineDebugInfo.cpp index bdbdd144fd..a48ec4f62e 100644 --- a/lib/CodeGen/MachineDebugInfo.cpp +++ b/lib/CodeGen/MachineDebugInfo.cpp @@ -1629,6 +1629,9 @@ struct DebugLabelFolder : public MachineFunctionPass { }; bool DebugLabelFolder::runOnMachineFunction(MachineFunction &MF) { + // FIXME - Missing label mapping. + return false; + // Get machine debug info. MachineDebugInfo *MDI = getAnalysisToUpdate<MachineDebugInfo>(); if (!MDI) return false; |