diff options
| author | Glenn Morris | 2008-07-08 07:03:07 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-07-08 07:03:07 +0000 |
| commit | 4a00783e8e07d7487bce5041d0f9b22247268346 (patch) | |
| tree | 9378fcf00ca8e0c03bb99ddb4e23a84e18fec300 /src/alloc.c | |
| parent | a6f75881406e540517fd96a8ad28ec997c2127fa (diff) | |
| download | emacs-4a00783e8e07d7487bce5041d0f9b22247268346.tar.gz emacs-4a00783e8e07d7487bce5041d0f9b22247268346.zip | |
Use __sparc__ rather than sparc. (Bug#507.)
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c index 797b385fbd2..b942e7a6e01 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -4487,7 +4487,7 @@ mark_stack () | |||
| 4487 | /* Fixme: Code in the Boehm GC suggests flushing (with `flushrs') is | 4487 | /* Fixme: Code in the Boehm GC suggests flushing (with `flushrs') is |
| 4488 | needed on ia64 too. See mach_dep.c, where it also says inline | 4488 | needed on ia64 too. See mach_dep.c, where it also says inline |
| 4489 | assembler doesn't work with relevant proprietary compilers. */ | 4489 | assembler doesn't work with relevant proprietary compilers. */ |
| 4490 | #ifdef sparc | 4490 | #ifdef __sparc__ |
| 4491 | asm ("ta 3"); | 4491 | asm ("ta 3"); |
| 4492 | #endif | 4492 | #endif |
| 4493 | 4493 | ||