mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
address breakpoints needs a leading "*"
This commit is contained in:
parent
0f5ee6f850
commit
03e23c8df3
1 changed files with 1 additions and 1 deletions
|
@ -491,7 +491,7 @@ public class CTarget implements ICDITarget {
|
||||||
} else if (location.getFunction() != null) {
|
} else if (location.getFunction() != null) {
|
||||||
loc = location.getFunction();
|
loc = location.getFunction();
|
||||||
} else if (location.getAddress() != 0) {
|
} else if (location.getAddress() != 0) {
|
||||||
loc = "" + location.getAddress();
|
loc = "*" + location.getAddress();
|
||||||
}
|
}
|
||||||
MIExecUntil until = factory.createMIExecUntil(loc);
|
MIExecUntil until = factory.createMIExecUntil(loc);
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Add table
Reference in a new issue