diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1994-02-08 15:49:22 -0800 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1994-02-08 15:49:22 -0800 |
commit | 99c7b2f62a0851c94d51c0138b00e0d2bfd5db46 (patch) | |
tree | 7e76ae6637cefd15d98f0afef32517308a77cceb | |
parent | dfe1a9168c98729f4e952c2c78d78eee6251e467 (diff) | |
download | gcc-99c7b2f62a0851c94d51c0138b00e0d2bfd5db46.zip gcc-99c7b2f62a0851c94d51c0138b00e0d2bfd5db46.tar.gz gcc-99c7b2f62a0851c94d51c0138b00e0d2bfd5db46.tar.bz2 |
(save_regs, restore_regs): Use __inline__ not inline.
From-SVN: r6499
-rw-r--r-- | gcc/config/sparc/sparc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/sparc/sparc.c b/gcc/config/sparc/sparc.c index f85117b..43887bd 100644 --- a/gcc/config/sparc/sparc.c +++ b/gcc/config/sparc/sparc.c @@ -1982,7 +1982,7 @@ int hard_regno_mode_ok[] = { TF_MODES, SF_MODES, DF_MODES, SF_MODES, TF_MODES, SF_MODES, DF_MODES, SF_MODES}; #ifdef __GNUC__ -inline +__inline__ #endif static int save_regs (file, low, high, base, offset, n_fregs) @@ -2014,7 +2014,7 @@ save_regs (file, low, high, base, offset, n_fregs) } #ifdef __GNUC__ -inline +__inline__ #endif static int restore_regs (file, low, high, base, offset, n_fregs) |