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 | 21ce53b94e4cf5fd0ffde75187137d8ba9e31730 (patch) | |
tree | cde42a524492a85a636ac44b466e2c08201af3fa /llvm/lib/CodeGen/MachineDebugInfo.cpp | |
parent | 30b254e48be5813a904ee0db136964e2593196ea (diff) | |
download | bcm5719-llvm-21ce53b94e4cf5fd0ffde75187137d8ba9e31730.tar.gz bcm5719-llvm-21ce53b94e4cf5fd0ffde75187137d8ba9e31730.zip |
Missed a label map, reverting till covered.
llvm-svn: 31512
Diffstat (limited to 'llvm/lib/CodeGen/MachineDebugInfo.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineDebugInfo.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/MachineDebugInfo.cpp b/llvm/lib/CodeGen/MachineDebugInfo.cpp index bdbdd144fd7..a48ec4f62ec 100644 --- a/llvm/lib/CodeGen/MachineDebugInfo.cpp +++ b/llvm/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; |