]> git.wh0rd.org - ICEs.git/blob - PR31899/reduce-ice
more ices
[ICEs.git] / PR31899 / reduce-ice
1 #!/bin/bash
2 #
3 # Run like:
4 # multidelta -level=# ./reduce-ice $FILE
5 # levels: 0 0 1 1 2 2 10 10
6 #
7
8 FILE=enblend.ii
9 CC=g++
10 CFLAGS="-g"
11 STRING="internal compiler error.*reference_to_unused"
12
13 $CC -pipe -c $CFLAGS $FILE 2>&1 | grep "$STRING"