diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-04-21 21:58:05 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-04-21 21:58:05 +0000 |
commit | fe87354769e18d2c7e42b7286d7f01048412964c (patch) | |
tree | e9a74faa3c7728842685f7915bb347d7c6815dbf | |
parent | 6cdf16d61de193e0596c3c2cec02e4227212986a (diff) |
Remove unused "verbose" argument to compile(). Also unbreaks ccc-analyzer.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@50066 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-x | utils/ccc-analyzer | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/ccc-analyzer b/utils/ccc-analyzer index d0f92b4e46..d564466973 100755 --- a/utils/ccc-analyzer +++ b/utils/ccc-analyzer @@ -37,7 +37,7 @@ def run(args): if code: sys.exit(code) -def compile(args,verbose): +def compile(args): # We MUST print to stderr. Some clients use the stdout output of # gcc for various purposes. print >> sys.stderr, '\n' |