Sign in
llvm
/
llvm
/
505cfd572ae5be750c3a64e4ec50513578bd6358
/
.
/
utils
/
gn
/
build
/
run_tablegen.py
blob: c7694236be55f901262dce946a8e9f71238f8f02 [
file
] [
log
] [
blame
]
#!/usr/bin/env python
"""Runs tablegen."""
import
subprocess
import
sys
# Prefix with ./ to run built binary, not arbitrary stuff from PATH.
sys
.
exit
(
subprocess
.
call
([
'./'
+
sys
.
argv
[
1
]]
+
sys
.
argv
[
2
:]))