Remove fixme
[oota-llvm.git] / utils / getsrcs.sh
1 #!/bin/sh
2 # This is useful because it prints out all of the source files.  Useful for
3 # greps.
4 find www include lib tools utils -name \*.\[cdhyl\]\* | grep -v Lexer.cpp | \
5        grep -v llvmAsmParser.cpp | grep -v llvmAsmParser.h | grep -v '~$' | \
6        grep -v '\.ll$' | grep -v .flc | grep -v Sparc.burm.c | grep -v '\.d$' |\
7        grep -v '\.dir$' | grep -v www/docs/doxygen | grep -v include/boost | \
8        grep -v /Burg/ | grep -v '\.lo' | grep -v '\.inc$' | \
9        grep -v TableGen/FileParser.cpp | grep -v TableGen/FileParser.h
10