diff options
author | Eugeniy Meshcheryakov <eugen@debian.org> | 2009-08-08 15:51:44 +0200 |
---|---|---|
committer | Eugeniy Meshcheryakov <eugen@debian.org> | 2009-08-08 15:51:44 +0200 |
commit | 6a783d278b6afb6a210844fd39774fdbf0bd8f16 (patch) | |
tree | 048d01f323d3ca8c16dea327c8c64c49f68f6303 /includes | |
parent | 37c74d4bd7317033fcc30148358b7936ffd8b11a (diff) | |
download | systemtap-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')
-rw-r--r-- | includes/sys/sdt.h | 2 |
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 " |