aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xentrace
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2009-04-02 11:48:32 +0100
committerKeir Fraser <keir.fraser@citrix.com>2009-04-02 11:48:32 +0100
commit48fe42ec0b1cd6fe1fb26c27fb307e8bc5240fe0 (patch)
tree8eec1f624de0a27fb133d49f997fb422249877b6 /tools/xentrace
parent0c29f97df0f61098c96a411ad745bb24e0adc7ae (diff)
downloadxen-48fe42ec0b1cd6fe1fb26c27fb307e8bc5240fe0.tar.gz
xen-48fe42ec0b1cd6fe1fb26c27fb307e8bc5240fe0.tar.bz2
xen-48fe42ec0b1cd6fe1fb26c27fb307e8bc5240fe0.zip
xenctx, ia64: fix compilation error.
Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
Diffstat (limited to 'tools/xentrace')
-rw-r--r--tools/xentrace/xenctx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/xentrace/xenctx.c b/tools/xentrace/xenctx.c
index 127379e671..c67171ca7e 100644
--- a/tools/xentrace/xenctx.c
+++ b/tools/xentrace/xenctx.c
@@ -875,8 +875,8 @@ static void dump_ctx(int vcpu)
#endif
print_ctx(&ctx);
- print_code(&ctx, vcpu);
#ifndef NO_TRANSLATION
+ print_code(&ctx, vcpu);
if (is_kernel_text(instr_pointer(&ctx)))
print_stack(&ctx, vcpu, guest_word_size);
#endif