From 5cbc3e15d87eac643a698f72b62d760d9734279c Mon Sep 17 00:00:00 2001 From: akr Date: Sat, 27 Apr 2013 10:06:20 +0000 Subject: * sparc.c: Use __asm__ instead of asm for gcc. gcc doesn't provide asm keyword if -ansi option is given. http://gcc.gnu.org/onlinedocs/gcc/Alternate-Keywords.html git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40496 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 6 ++++++ sparc.c | 11 ++++++++++- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index d8973deb51..78b4aa13c1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Sat Apr 27 19:04:55 2013 Tanaka Akira + + * sparc.c: Use __asm__ instead of asm for gcc. + gcc doesn't provide asm keyword if -ansi option is given. + http://gcc.gnu.org/onlinedocs/gcc/Alternate-Keywords.html + Sat Apr 27 17:22:50 2013 Tanaka Akira * ext/socket/extconf.rb: Redundant test removed. diff --git a/sparc.c b/sparc.c index 5c5dc8ef8e..dc3779035f 100644 --- a/sparc.c +++ b/sparc.c @@ -12,7 +12,16 @@ void rb_sparc_flush_register_windows(void) { - asm +/* + * gcc doesn't provide "asm" keyword if -ansi and the various -std options + * are given. + * http://gcc.gnu.org/onlinedocs/gcc/Alternate-Keywords.html + */ +#ifndef __GNUC__ +#define __asm__ asm +#endif + + __asm__ #ifdef __GNUC__ __volatile__ #endif -- cgit v1.2.3