diff options
author | Anatoly Sokolov <aesok@gcc.gnu.org> | 2008-08-12 21:22:28 +0400 |
---|---|---|
committer | Anatoly Sokolov <aesok@gcc.gnu.org> | 2008-08-12 21:22:28 +0400 |
commit | 3a694d865c744b27b53a448c7a6b16500cd8ded3 (patch) | |
tree | 1b4ff0db36d8d224619666447976db211607a3e3 /gcc/final.c | |
parent | bad4f40b6c2de1cd4dd798fccac70e2f77d5685f (diff) | |
download | gcc-3a694d865c744b27b53a448c7a6b16500cd8ded3.tar.gz |
Fix final.c.
From-SVN: r139025
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); |