diff options
author | aesok <aesok@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-08-12 17:22:28 +0000 |
---|---|---|
committer | aesok <aesok@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-08-12 17:22:28 +0000 |
commit | b8ddfc6138be7a0036527584aca9ba9fe5aad356 (patch) | |
tree | 1b4ff0db36d8d224619666447976db211607a3e3 /gcc/final.c | |
parent | e50260bbf891226b1b3ab3709dc64757fbb1f04d (diff) | |
download | gcc-b8ddfc6138be7a0036527584aca9ba9fe5aad356.tar.gz |
Fix final.c.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@139025 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/final.c')
-rw-r--r-- | gcc/final.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/final.c b/gcc/final.c index 29b5b8f06b7..d24d8fdb177 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -2181,7 +2181,7 @@ final_scan_insn (rtx insn, FILE *file, int optimize ATTRIBUTE_UNUSED, { expanded_location loc; - app_enable (void); + app_enable (); loc = expand_location (ASM_INPUT_SOURCE_LOCATION (body)); if (*loc.file && loc.line) fprintf (asm_out_file, "%s %i \"%s\" 1\n", @@ -2221,7 +2221,7 @@ final_scan_insn (rtx insn, FILE *file, int optimize ATTRIBUTE_UNUSED, /* Output the insn using them. */ if (string[0]) { - app_enable (void); + app_enable (); if (expanded.file && expanded.line) fprintf (asm_out_file, "%s %i \"%s\" 1\n", ASM_COMMENT_START, expanded.line, expanded.file); |