Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugene Tarassov2018-01-30 01:42:52 +0000
committerEugene Tarassov2018-01-30 01:42:52 +0000
commitef1450ef7ecdd5deac049e721cf6ed51bf79ec25 (patch)
tree8c46ba3b86f688410532e23db03bf2e33c52af38 /agent/system
parent0d4397eefc075faf398ff2d57ad4a3da6dd6078c (diff)
downloadorg.eclipse.tcf.agent-ef1450ef7ecdd5deac049e721cf6ed51bf79ec25.tar.gz
org.eclipse.tcf.agent-ef1450ef7ecdd5deac049e721cf6ed51bf79ec25.tar.xz
org.eclipse.tcf.agent-ef1450ef7ecdd5deac049e721cf6ed51bf79ec25.zip
TCF Agent: GDB Remote Serial Protocol: fixed handling of MicroBlaze registers
Diffstat (limited to 'agent/system')
-rw-r--r--agent/system/GNU/Linux/tcf/context-linux.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/agent/system/GNU/Linux/tcf/context-linux.c b/agent/system/GNU/Linux/tcf/context-linux.c
index bc0ec1ec..1462d46d 100644
--- a/agent/system/GNU/Linux/tcf/context-linux.c
+++ b/agent/system/GNU/Linux/tcf/context-linux.c
@@ -1107,6 +1107,8 @@ int context_get_isa(Context * ctx, ContextAddress addr, ContextISA * isa) {
isa->def = "PPC";
#elif defined(__MICROBLAZE__)
isa->def = "MicroBlaze";
+#elif defined(__MICROBLAZEX__)
+ isa->def = "MicroBlazeX";
#else
isa->def = NULL;
#endif

Back to the top