forked from OSchip/llvm-project
[Verifier] disable llvm.experimental.noalias.scope.decl dominance check.
This was enabled in https://reviews.llvm.org/D95335 but it breaks the stage2 fuchsia build (See http://lab.llvm.org:8011/#/builders/98/builds/4105/steps/9/logs/stdio)
This commit is contained in:
parent
13f2aee783
commit
3b5d36ece2
|
@ -116,7 +116,7 @@
|
|||
using namespace llvm;
|
||||
|
||||
static cl::opt<bool> VerifyNoAliasScopeDomination(
|
||||
"verify-noalias-scope-decl-dom", cl::Hidden, cl::init(true),
|
||||
"verify-noalias-scope-decl-dom", cl::Hidden, cl::init(false),
|
||||
cl::desc("Ensure that llvm.experimental.noalias.scope.decl for identical "
|
||||
"scopes are not dominating"));
|
||||
|
||||
|
|
Loading…
Reference in New Issue