repo.or.cz
/
clang.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix miscompilation regarding VLAs; subscription of VLA pointers was incorrect.
[clang.git]
/
utils
/
ABITest
/
build-and-summarize-all.sh
blob
23e34a4669b699d028ecca9bcc7e1ddbc25c3431
1
#!/bin/sh
2
3
set -eu
4
5
if
[
$#
!=
1
];
then
6
echo
"usage:
$0
<num-tests>"
7
exit
1
8
fi
9
10
for
bits
in
32 64
;
do
11
for
kind
in
return-types single-args
;
do
12
echo
"--
$kind
-
$bits
--"
13
(
cd
$kind
-
$bits
&&
..
/
build-and-summarize.sh
$1
)
14
done
15
done