Commit b029f99a by Jim Wilson

(output_constant): Cast assemble_string argument to char *.

From-SVN: r9358
parent b990f635
...@@ -3535,7 +3535,7 @@ output_constant (exp, size) ...@@ -3535,7 +3535,7 @@ output_constant (exp, size)
unsigned char *buffer = (unsigned char *) alloca (size); unsigned char *buffer = (unsigned char *) alloca (size);
if (get_set_constructor_bytes (exp, buffer, size)) if (get_set_constructor_bytes (exp, buffer, size))
abort (); abort ();
assemble_string (buffer, size); assemble_string ((char *) buffer, size);
} }
else else
error ("unknown set constructor type"); error ("unknown set constructor type");
......
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