gengtype-parse.c (parse_error): Add newline after message.

* gengtype-parse.c (parse_error): Add newline after message.

From-SVN: r146721
This commit is contained in:
Diego Novillo 2009-04-24 09:46:47 -04:00 committed by Diego Novillo
parent a7a3cf5c10
commit ad58aabeb5
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2009-04-24 Diego Novillo <dnovillo@google.com>
* gengtype-parse.c (parse_error): Add newline after message.
2009-04-24 H.J. Lu <hongjiu.lu@intel.com>
* config/i386/sse.md (avxmodesuffixs): Removed.

View File

@ -141,6 +141,8 @@ parse_error (const char *msg, ...)
vfprintf (stderr, msg, ap);
va_end (ap);
fputc ('\n', stderr);
hit_error = true;
}