Commit ff970081 by Arati Dikey Committed by Jeff Law

* h8300.c (asm_file_start): Corrected optimization comment.

From-SVN: r56761
parent b50d021d
2002-09-03 Arati Dikey <aratid@kpit.com>
* h8300.c (asm_file_start): Corrected optimization comment.
2002-09-03 Stan Shebs <shebs@apple.com>
* c-lang.c (recognize_objc_keyword): Remove, no longer used.
......
......@@ -505,7 +505,10 @@ asm_file_start (file)
{
fprintf (file, ";\tGCC For the Hitachi H8/300\n");
fprintf (file, ";\tBy Hitachi America Ltd and Cygnus Support\n");
if (optimize)
if (optimize_size)
fprintf (file, "; -Os\n")
else if (optimize)
fprintf (file, "; -O%d\n", optimize);
if (TARGET_H8300H)
fprintf (file, "\n\t.h8300h\n");
......
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