aboutsummaryrefslogtreecommitdiff
path: root/gcc/xcoffout.c
diff options
context:
space:
mode:
authorJim Wilson <wilson@gcc.gnu.org>1994-01-31 12:19:28 -0800
committerJim Wilson <wilson@gcc.gnu.org>1994-01-31 12:19:28 -0800
commit9509444c688b042efd8f6bdb0e2c562bbf8eef81 (patch)
tree0c02c6a20206329b3f0926325c3cc942c00af237 /gcc/xcoffout.c
parent05ed5d57d9ecceea05153c1c81113e9457113369 (diff)
downloadgcc-9509444c688b042efd8f6bdb0e2c562bbf8eef81.zip
gcc-9509444c688b042efd8f6bdb0e2c562bbf8eef81.tar.gz
gcc-9509444c688b042efd8f6bdb0e2c562bbf8eef81.tar.bz2
(ASM_OUTPUT_LFE): Output absolute line number not
relative line number. From-SVN: r6437
Diffstat (limited to 'gcc/xcoffout.c')
-rw-r--r--gcc/xcoffout.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/xcoffout.c b/gcc/xcoffout.c
index 8ed47bb..b586a8f 100644
--- a/gcc/xcoffout.c
+++ b/gcc/xcoffout.c
@@ -92,9 +92,7 @@ char *xcoff_read_only_section_name;
#define ASM_OUTPUT_LFE(FILE,LINENUM) \
do { \
- int linenum = LINENUM; \
- MAKE_LINE_SAFE (linenum); \
- fprintf (FILE, "\t.ef\t%d\n", ABS_OR_RELATIVE_LINENO (linenum)); \
+ fprintf (FILE, "\t.ef\t%d\n", (LINENUM)); \
xcoff_begin_function_line = -1; \
} while (0)