1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00

(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.

This commit is contained in:
Ulrich Drepper
2004-12-22 20:10:10 +00:00
parent 0ecb606cb6
commit a334319f65
6215 changed files with 304673 additions and 494300 deletions

View File

@ -1,47 +0,0 @@
#!/usr/bin/perl
use strict;
use warnings;
# Check __BEGIN_NAMESPACE ... __END_NAMESPACE pairing in an include file.
my $code = 0;
for my $path (@ARGV) {
my $localcode = 0;
my @stack;
open my $in, '<', $path
or die "open $path failed: $!";
while (<$in>) {
if ( /^\s*__BEGIN_(.*)\b/ ) {
push @stack, $1;
}
elsif ( /^\s*__END_(.*)\b/ ) {
if (@stack) {
my $tag = pop @stack;
if ($1 ne $tag) {
print "$path:$.: BEGIN $tag paired with END $1\n";
$localcode = 1;
}
}
else {
print "$path:$.: END $1 does not match a begin\n";
$localcode = 1;
}
}
}
if (@stack) {
print "$path: Unmatched begin tags " . join (' ', @stack) ."\n";
$localcode = 1;
}
if ($localcode == 0) {
print "$path: OK\n";
} else {
$code = $localcode;
}
}
exit $code;