Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(3232)

Unified Diff: lib/Target/Alpha/AlphaCodeEmitter.cpp

Issue 95062: [PATCH] Call MCE.processDebugLoc from the remaining Targets' emitters (Closed) Base URL: https://llvm.org/svn/llvm-project/llvm/trunk/
Patch Set: Created 15 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/Target/ARM/ARMCodeEmitter.cpp ('k') | lib/Target/PowerPC/PPCCodeEmitter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/Target/Alpha/AlphaCodeEmitter.cpp
===================================================================
--- lib/Target/Alpha/AlphaCodeEmitter.cpp (revision 76100)
+++ lib/Target/Alpha/AlphaCodeEmitter.cpp (working copy)
@@ -72,8 +72,6 @@
return "Alpha Machine Code Emitter";
}
- void emitInstruction(const MachineInstr &MI);
-
private:
void emitBasicBlock(MachineBasicBlock &MBB);
};
@@ -118,6 +116,7 @@
for (MachineBasicBlock::iterator I = MBB.begin(), E = MBB.end();
I != E; ++I) {
const MachineInstr &MI = *I;
+ MCE.processDebugLoc(MI.getDebugLoc());
switch(MI.getOpcode()) {
default:
MCE.emitWordLE(getBinaryCodeForInstr(*I));
@@ -245,5 +244,3 @@
}
#include "AlphaGenCodeEmitter.inc"
-
-
« no previous file with comments | « lib/Target/ARM/ARMCodeEmitter.cpp ('k') | lib/Target/PowerPC/PPCCodeEmitter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b