diff options
| author | Matt Arsenault <Matthew.Arsenault@amd.com> | 2019-08-30 17:41:58 +0000 |
|---|---|---|
| committer | Matt Arsenault <Matthew.Arsenault@amd.com> | 2019-08-30 17:41:58 +0000 |
| commit | 466ec2d5522b584525aeee2f05c7ddca5c20ac2d (patch) | |
| tree | b269201d47697ea3ae1ec34a921e2e35af37a399 /llvm/lib/CodeGen | |
| parent | 18e8d02e8c891824b5c6bfc66b1f9634b0979720 (diff) | |
| download | bcm5719-llvm-466ec2d5522b584525aeee2f05c7ddca5c20ac2d.tar.gz bcm5719-llvm-466ec2d5522b584525aeee2f05c7ddca5c20ac2d.zip | |
GlobalISel: Fix missing pass dependency
llvm-svn: 370496
Diffstat (limited to 'llvm/lib/CodeGen')
| -rw-r--r-- | llvm/lib/CodeGen/GlobalISel/InstructionSelect.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/GlobalISel/InstructionSelect.cpp b/llvm/lib/CodeGen/GlobalISel/InstructionSelect.cpp index 1fc12359cd8..bf441afc9dc 100644 --- a/llvm/lib/CodeGen/GlobalISel/InstructionSelect.cpp +++ b/llvm/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) |

