]> git.wh0rd.org - ICEs.git/blob - not-unused/reduce-ice
more ices
[ICEs.git] / not-unused / 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=des.i
9 CC=gcc
10 CFLAGS="-Wall -Os -fno-tree-dominator-opts"
11 STRING="'f' may be used uninitialized in this function"
12
13 $CC -pipe -c $CFLAGS $FILE 2>&1 | grep "$STRING"