diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2002-04-26 19:57:12 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2002-04-26 19:57:12 +0000 |
commit | b285d997e02a5573da4f0741c68b47b8191073c0 (patch) | |
tree | 43542d921b46e6ca9185dcdaa2895b2523a656fd /sys/arch | |
parent | de6becc224daf910939e9895343042e3cbf3a241 (diff) |
newer gas is picky about misplaced .loc directives; comment'em out for now.
tested by miod, deraadt ok
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/alpha/include/asm.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/alpha/include/asm.h b/sys/arch/alpha/include/asm.h index 152a1749d5a..c26255fc52c 100644 --- a/sys/arch/alpha/include/asm.h +++ b/sys/arch/alpha/include/asm.h @@ -1,4 +1,4 @@ -/* $OpenBSD: asm.h,v 1.9 2000/11/08 21:27:16 ericj Exp $ */ +/* $OpenBSD: asm.h,v 1.10 2002/04/26 19:57:11 fgsch Exp $ */ /* $NetBSD: asm.h,v 1.23 2000/06/23 12:18:45 kleink Exp $ */ /* @@ -248,7 +248,7 @@ ERSAVE() #define ESETUP(_name_) \ - .loc 1 __LINE__; \ + /* .loc 1 __LINE__; */ \ .globl _name_; \ .ent _name_ 0; \ _name_:; \ @@ -263,7 +263,7 @@ _name_:; \ stq at_reg,(FRAME_AT*8)(sp); \ .set at; \ stq ra,(FRAME_RA*8)(sp); \ - .loc 1 __LINE__; \ + /* .loc 1 __LINE__; */ \ bsr ra,exception_save_regs /* jmp/CALL trashes pv/t12 */ @@ -413,7 +413,7 @@ _name_: * Function invocation */ #define CALL(_name_) \ - .loc 1 __LINE__; \ + /* .loc 1 __LINE__; */ \ jsr ra,_name_; \ ldgp gp,0(ra) /* but this would cover longer jumps |