diff options
| author | Johannes Doerfert <jdoerfert@anl.gov> | 2019-06-14 14:53:41 +0000 |
|---|---|---|
| committer | Johannes Doerfert <jdoerfert@anl.gov> | 2019-06-14 14:53:41 +0000 |
| commit | 282d34ee78cd878a8554274c4a08feedb6ac2062 (patch) | |
| tree | d07159137862762fd4ee6af980add6490465ea56 /llvm/lib/Transforms | |
| parent | d85dd0f0c9e90ffbe402ee1256cc2abe961bb16a (diff) | |
| download | bcm5719-llvm-282d34ee78cd878a8554274c4a08feedb6ac2062.tar.gz bcm5719-llvm-282d34ee78cd878a8554274c4a08feedb6ac2062.zip | |
[Attributor] Disable the Attributor by default and fix a comment
llvm-svn: 363408
Diffstat (limited to 'llvm/lib/Transforms')
| -rw-r--r-- | llvm/lib/Transforms/IPO/Attributor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/IPO/Attributor.cpp b/llvm/lib/Transforms/IPO/Attributor.cpp index 9adf5e702d8..0915a990499 100644 --- a/llvm/lib/Transforms/IPO/Attributor.cpp +++ b/llvm/lib/Transforms/IPO/Attributor.cpp @@ -59,7 +59,7 @@ static cl::opt<unsigned> static cl::opt<bool> DisableAttributor( "attributor-disable", cl::Hidden, cl::desc("Disable the attributor inter-procedural deduction pass."), - cl::init(false)); + cl::init(true)); static cl::opt<bool> VerifyAttributor( "attributor-verify", cl::Hidden, |

