compile-custom.ll.py 238 B

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