summaryrefslogtreecommitdiffstats
path: root/includes/sys
diff options
context:
space:
mode:
authorEugeniy Meshcheryakov <eugen@debian.org>2009-08-08 15:51:44 +0200
committerEugeniy Meshcheryakov <eugen@debian.org>2009-08-08 15:51:44 +0200
commit6a783d278b6afb6a210844fd39774fdbf0bd8f16 (patch)
tree048d01f323d3ca8c16dea327c8c64c49f68f6303 /includes/sys
parent37c74d4bd7317033fcc30148358b7936ffd8b11a (diff)
downloadsystemtap-steved-6a783d278b6afb6a210844fd39774fdbf0bd8f16.tar.gz
systemtap-steved-6a783d278b6afb6a210844fd39774fdbf0bd8f16.tar.xz
systemtap-steved-6a783d278b6afb6a210844fd39774fdbf0bd8f16.zip
Use nop instructions without parameters on arm
Fixes FTBFS, see https://buildd.debian.org/fetch.cgi?pkg=systemtap;ver=0.9.9-1;arch=armel;stamp=1249664825
Diffstat (limited to 'includes/sys')
-rw-r--r--includes/sys/sdt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/sys/sdt.h b/includes/sys/sdt.h
index f179c2a7..e3a605c5 100644
--- a/includes/sys/sdt.h
+++ b/includes/sys/sdt.h
@@ -68,7 +68,7 @@
#define STAP_UNINLINE_LABEL(label) \
__extension__ static volatile long labelval __attribute__ ((unused)) = (long) &&label
-#if defined __x86_64__ || defined __i386__ || defined __powerpc__
+#if defined __x86_64__ || defined __i386__ || defined __powerpc__ || defined __arm__
#define STAP_NOP "\tnop "
#else
#define STAP_NOP "\tnop 0 "