Chromium Code Reviews| Index: pydir/run-pnacl-sz.py |
| diff --git a/pydir/run-pnacl-sz.py b/pydir/run-pnacl-sz.py |
| index c1e4f3ad1c7bc4c81ef9ea9851ecb2ecca29c25e..db3b7c005ba2d03e8e4761e4b933276fe1adb1ca 100755 |
| --- a/pydir/run-pnacl-sz.py |
| +++ b/pydir/run-pnacl-sz.py |
| @@ -8,7 +8,7 @@ import subprocess |
| import sys |
| import tempfile |
| -from utils import FindBaseNaCl, shellcmd |
| +from utils import GetObjdumpCmd, FindBaseNaCl, shellcmd |
|
Jim Stichnoth
2016/03/09 22:41:13
alphabetize
Sean Klein
2016/03/09 22:59:22
Done.
|
| def TargetAssemblerFlags(target, sandboxed): |
| @@ -31,10 +31,6 @@ def TargetDisassemblerFlags(target): |
| 'mips32':[] } |
| return flags[target] |
| -def GetObjdumpCmd(): |
| - """Return a suitable objdump command.""" |
| - return 'arm-nacl-objdump' |
| - |
| def main(): |
| """Run the pnacl-sz compiler on an llvm file. |