Commit dccdc007 authored by ebotcazou's avatar ebotcazou
Browse files

* make_sunver.pl: Remove extra whitespace in regexp.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@161973 138bc75d-0d04-0410-961f-82ee72b054a4
parent 53b72e99
2010-07-08 Eric Botcazou <ebotcazou@adacore.com>
* make_sunver.pl: Remove extra whitespace in regexp.
2010-07-02 Sebastian Pop <sebastian.pop@amd.com>
* check_GNU_style.sh: New.
......
......@@ -60,7 +60,7 @@ while (<NM>) {
next if (/:$/);
# Ignore register (SPARC only), undefined and local symbols. The
# symbol name is optional; Sun nm emits none for local or .bss symbols.
next if (/^([^ ]+)?[ \t]+[RUa-z][ \t]+ /);
next if (/^([^ ]+)?[ \t]+[RUa-z][ \t]+/);
# Ignore objects without symbol table. Message goes to stdout with Sun
# nm, while GNU nm emits the corresponding message to stderr.
next if (/.* - No symbol table data/);
......
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