repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git]
/
llvm
/
test
/
BugPoint
/
compile-custom.ll.py
blob
8f3e3c41d779917d6280b433f0765c52fbe75e9e
1
#!/usr/bin/env python
2
3
from
__future__
import
print_function
4
5
import
sys
6
7
# Currently any print-out from the custom tool is interpreted as a crash
8
# (i.e. test is still interesting)
9
10
print
(
"Error: "
+
" "
.
join
(
sys
.
argv
[
1
:]))
11
12
sys
.
exit
(
1
)