repo.or.cz
/
llvm-core.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[InstCombine] Signed saturation patterns
[llvm-core.git]
/
utils
/
gn
/
build
/
run_tablegen.py
blob
c7694236be55f901262dce946a8e9f71238f8f02
1
#!/usr/bin/env python
2
"""Runs tablegen."""
3
4
import
subprocess
5
import
sys
6
7
# Prefix with ./ to run built binary, not arbitrary stuff from PATH.
8
sys
.
exit
(
subprocess
.
call
([
'./'
+
sys
.
argv
[
1
]] +
sys
.
argv
[
2
:]))