compile-custom.ll.py 198 B

12345678910
  1. #!/usr/bin/env python
  2. import sys
  3. # Currently any print-out from the custom tool is interpreted as a crash
  4. # (i.e. test is still interesting)
  5. print "Error: " + ' '.join(sys.argv[1:])
  6. sys.exit(1)