• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/usr/bin/env python
2"""Runs tablegen."""
3
4import subprocess
5import sys
6
7# Prefix with ./ to run built binary, not arbitrary stuff from PATH.
8sys.exit(subprocess.call(['./' + sys.argv[1]] + sys.argv[2:]))
9