projects
/
oota-llvm.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Putting all the standard tool options into a "Generic" category.
[oota-llvm.git]
/
test
/
BugPoint
/
compile-custom.ll.py
1
#!/usr/bin/env python
2
3
import sys
4
5
# Currently any print-out from the custom tool is interpreted as a crash
6
# (i.e. test is still interesting)
7
8
print("Error: " + ' '.join(sys.argv[1:]))
9
10
sys.exit(1)