]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/BugPoint/compile-custom.ll.py
Vendor import of llvm RELEASE_350/final tag r216957 (effectively, 3.5.0 release):
[FreeBSD/FreeBSD.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)