diff options
Diffstat (limited to 'include/linux/compiler.h')
| -rw-r--r-- | include/linux/compiler.h | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/compiler.h b/include/linux/compiler.h index 3d5af56337bd..429dcebe2b99 100644 --- a/include/linux/compiler.h +++ b/include/linux/compiler.h @@ -121,7 +121,7 @@ void ftrace_likely_update(struct ftrace_likely_data *f, int val,  	asm volatile(__stringify_label(c) ":\n\t"			\  		     ".pushsection .discard.reachable\n\t"		\  		     ".long " __stringify_label(c) "b - .\n\t"		\ -		     ".popsection\n\t");				\ +		     ".popsection\n\t" : : "i" (c));			\  })  #define annotate_reachable() __annotate_reachable(__COUNTER__) @@ -129,7 +129,7 @@ void ftrace_likely_update(struct ftrace_likely_data *f, int val,  	asm volatile(__stringify_label(c) ":\n\t"			\  		     ".pushsection .discard.unreachable\n\t"		\  		     ".long " __stringify_label(c) "b - .\n\t"		\ -		     ".popsection\n\t");				\ +		     ".popsection\n\t" : : "i" (c));			\  })  #define annotate_unreachable() __annotate_unreachable(__COUNTER__)  |