diff options
author | Han-Wen Nienhuys <hanwen@lilypond.org> | 2005-03-28 11:40:58 +0000 |
---|---|---|
committer | Han-Wen Nienhuys <hanwen@lilypond.org> | 2005-03-28 11:40:58 +0000 |
commit | cb975c210539a7b7e3dd0c6257fbcd567318d435 (patch) | |
tree | 4637d630932555e8f555c5381326a1e822dc07b9 /libguile/inline.h | |
parent | 22ed4dd806febbc2e64080345e91bded2c7eb507 (diff) | |
download | guile-cb975c210539a7b7e3dd0c6257fbcd567318d435.tar.gz |
(scm_double_cell): use __asm__ iso. asm, to maintain
compatibility with gcc -std=c99.
Diffstat (limited to 'libguile/inline.h')
-rw-r--r-- | libguile/inline.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/inline.h b/libguile/inline.h index 4334ff4bc..cd4a5e9eb 100644 --- a/libguile/inline.h +++ b/libguile/inline.h @@ -195,7 +195,7 @@ scm_double_cell (scm_t_bits car, scm_t_bits cbr, reordering. */ #ifdef __GNUC__ - asm volatile ("" : : : "memory"); + __asm__ volatile ("" : : : "memory"); #else /* portable version, just in case any other compiler does the same thing. */ |