Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'debug/org.eclipse.cdt.debug.mi.core/cdi/org/eclipse/cdt/debug/mi/core/cdi/model/MixedInstruction.java')
-rw-r--r--debug/org.eclipse.cdt.debug.mi.core/cdi/org/eclipse/cdt/debug/mi/core/cdi/model/MixedInstruction.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/debug/org.eclipse.cdt.debug.mi.core/cdi/org/eclipse/cdt/debug/mi/core/cdi/model/MixedInstruction.java b/debug/org.eclipse.cdt.debug.mi.core/cdi/org/eclipse/cdt/debug/mi/core/cdi/model/MixedInstruction.java
index e12d6b5a1e9..007a5cd841b 100644
--- a/debug/org.eclipse.cdt.debug.mi.core/cdi/org/eclipse/cdt/debug/mi/core/cdi/model/MixedInstruction.java
+++ b/debug/org.eclipse.cdt.debug.mi.core/cdi/org/eclipse/cdt/debug/mi/core/cdi/model/MixedInstruction.java
@@ -29,6 +29,7 @@ public class MixedInstruction extends CObject implements ICDIMixedInstruction {
/**
* @see org.eclipse.cdt.debug.core.cdi.model.ICDIMixedInstruction#getFileName()
*/
+ @Override
public String getFileName() {
return srcAsm.getFile();
}
@@ -36,6 +37,7 @@ public class MixedInstruction extends CObject implements ICDIMixedInstruction {
/**
* @see org.eclipse.cdt.debug.core.cdi.model.ICDIMixedInstruction#getInstructions()
*/
+ @Override
public ICDIInstruction[] getInstructions() {
MIAsm[] asms = srcAsm.getMIAsms();
ICDIInstruction[] instructions = new ICDIInstruction[asms.length];
@@ -48,6 +50,7 @@ public class MixedInstruction extends CObject implements ICDIMixedInstruction {
/**
* @see org.eclipse.cdt.debug.core.cdi.model.ICDIMixedInstruction#getLineNumber()
*/
+ @Override
public int getLineNumber() {
return srcAsm.getLine();
}

Back to the top