aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorAnatoly Sokolov <aesok@gcc.gnu.org>2008-08-12 21:22:28 +0400
committerAnatoly Sokolov <aesok@gcc.gnu.org>2008-08-12 21:22:28 +0400
commit3a694d865c744b27b53a448c7a6b16500cd8ded3 (patch)
tree1b4ff0db36d8d224619666447976db211607a3e3 /gcc
parentbad4f40b6c2de1cd4dd798fccac70e2f77d5685f (diff)
downloadgcc-3a694d865c744b27b53a448c7a6b16500cd8ded3.zip
gcc-3a694d865c744b27b53a448c7a6b16500cd8ded3.tar.gz
gcc-3a694d865c744b27b53a448c7a6b16500cd8ded3.tar.bz2
Fix final.c.
From-SVN: r139025
Diffstat (limited to 'gcc')
-rw-r--r--gcc/final.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/final.c b/gcc/final.c
index 29b5b8f..d24d8fd 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);