Commit f42f3c2d by Richard Kenner Committed by Richard Kenner

* varasm.c (output_constant): Fix unused variable warning.

From-SVN: r45750
parent bb9f8221
Sat Sep 22 09:09:32 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu> Sat Sep 22 09:09:32 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* varasm.c (output_constant): Fix unused variable warning.
* attribs.c: New file, from c-common.c. * attribs.c: New file, from c-common.c.
(attribute_tables): Now four elements. (attribute_tables): Now four elements.
(format_attribute_table, lang_attribute_common): New variables. (format_attribute_table, lang_attribute_common): New variables.
......
...@@ -4472,9 +4472,9 @@ output_constant (exp, size, align) ...@@ -4472,9 +4472,9 @@ output_constant (exp, size, align)
if (TREE_CODE (exp) == FDESC_EXPR) if (TREE_CODE (exp) == FDESC_EXPR)
{ {
#ifdef ASM_OUTPUT_FDESC
HOST_WIDE_INT part = tree_low_cst (TREE_OPERAND (exp, 1), 0); HOST_WIDE_INT part = tree_low_cst (TREE_OPERAND (exp, 1), 0);
tree decl = TREE_OPERAND (exp, 0); tree decl = TREE_OPERAND (exp, 0);
#ifdef ASM_OUTPUT_FDESC
ASM_OUTPUT_FDESC (asm_out_file, decl, part); ASM_OUTPUT_FDESC (asm_out_file, decl, part);
#else #else
abort (); abort ();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment