From: Matt Arsenault Date: Fri, 30 Aug 2019 17:41:58 +0000 (+0000) Subject: GlobalISel: Fix missing pass dependency X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f8eb5406ab4fecd2cfea64b7efbd90dc69742838;p=llvm GlobalISel: Fix missing pass dependency git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@370496 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/GlobalISel/InstructionSelect.cpp b/lib/CodeGen/GlobalISel/InstructionSelect.cpp index 1fc12359cd8..bf441afc9dc 100644 --- a/lib/CodeGen/GlobalISel/InstructionSelect.cpp +++ b/lib/CodeGen/GlobalISel/InstructionSelect.cpp @@ -46,6 +46,7 @@ INITIALIZE_PASS_BEGIN(InstructionSelect, DEBUG_TYPE, "Select target instructions out of generic instructions", false, false) INITIALIZE_PASS_DEPENDENCY(TargetPassConfig) +INITIALIZE_PASS_DEPENDENCY(GISelKnownBitsAnalysis) INITIALIZE_PASS_END(InstructionSelect, DEBUG_TYPE, "Select target instructions out of generic instructions", false, false)