diff options
author | Ulrich Drepper <drepper@redhat.com> | 2010-01-12 12:18:08 -0800 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2010-01-12 12:18:08 -0800 |
commit | a9625ea95fbc73e324630e760cf2805a9378ee5e (patch) | |
tree | 8b15091e4ae2ea9c4cd5283487928935c6791299 /conform/conformtest.pl | |
parent | d3c7e68655d65b5e68cfc14c89aefa8dd3f8e3e2 (diff) | |
download | glibc-a9625ea95fbc73e324630e760cf2805a9378ee5e.tar.gz glibc-a9625ea95fbc73e324630e760cf2805a9378ee5e.tar.xz glibc-a9625ea95fbc73e324630e760cf2805a9378ee5e.zip |
Internal namespace test improvements.
Diffstat (limited to 'conform/conformtest.pl')
-rw-r--r-- | conform/conformtest.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/conform/conformtest.pl b/conform/conformtest.pl index c528127cee..4cf571fc42 100644 --- a/conform/conformtest.pl +++ b/conform/conformtest.pl @@ -1057,8 +1057,8 @@ while ($#headers >= 0) { push @allow, $1; } elsif (/^typed-constant *([a-zA-Z0-9_]*) *({([^}]*)}|([^ ]*)) *([A-Za-z0-9_]*)?/) { push @allow, 1; - } elsif (/^type *({([^}]*)|([a-zA-Z0-9_]*))/) { - my($type) = "$2$3"; + } elsif (/^(type|tag) *({([^}]*)|([a-zA-Z0-9_]*))/) { + my($type) = "$3$4"; # Remember that this name is allowed. if ($type =~ /^struct *(.*)/) { |