diff options
Diffstat (limited to 'lib/CodeGen/MachineDebugInfo.cpp')
-rw-r--r-- | lib/CodeGen/MachineDebugInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/MachineDebugInfo.cpp b/lib/CodeGen/MachineDebugInfo.cpp index c87928f44a..a227589e1e 100644 --- a/lib/CodeGen/MachineDebugInfo.cpp +++ b/lib/CodeGen/MachineDebugInfo.cpp @@ -1538,7 +1538,7 @@ MachineDebugInfo::getGlobalVariablesUsing(Module &M, unsigned MachineDebugInfo::RecordLabel(unsigned Line, unsigned Column, unsigned Source) { unsigned ID = NextLabelID(); - Lines.push_back(new SourceLineInfo(Line, Column, Source, ID)); + Lines.push_back(SourceLineInfo(Line, Column, Source, ID)); return ID; } |