From 6a783d278b6afb6a210844fd39774fdbf0bd8f16 Mon Sep 17 00:00:00 2001 From: Eugeniy Meshcheryakov Date: Sat, 8 Aug 2009 15:51:44 +0200 Subject: 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 --- includes/sys/sdt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'includes/sys/sdt.h') 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 " -- cgit