diff options
author | Reid Kleckner <rnk@google.com> | 2019-11-14 15:15:48 -0800 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2019-11-14 15:23:15 -0800 |
commit | 4c1a1d3cf97e1ede466e2ad318f2811283ca0fb1 (patch) | |
tree | 40d8eb37858a027673eaf70cc3f88ab2b434fe45 /llvm/lib/Transforms/Scalar/LoopFuse.cpp | |
parent | 76ac1660f7671d0707864e551e2e39c98ac02907 (diff) | |
download | bcm5719-llvm-4c1a1d3cf97e1ede466e2ad318f2811283ca0fb1.tar.gz bcm5719-llvm-4c1a1d3cf97e1ede466e2ad318f2811283ca0fb1.zip |
Add missing includes needed to prune LLVMContext.h include, NFC
These are a pre-requisite to removing #include "llvm/Support/Options.h"
from LLVMContext.h: https://reviews.llvm.org/D70280
Diffstat (limited to 'llvm/lib/Transforms/Scalar/LoopFuse.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/LoopFuse.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Transforms/Scalar/LoopFuse.cpp b/llvm/lib/Transforms/Scalar/LoopFuse.cpp index 09dc78aba73..7e9e5a470cd 100644 --- a/llvm/lib/Transforms/Scalar/LoopFuse.cpp +++ b/llvm/lib/Transforms/Scalar/LoopFuse.cpp @@ -57,6 +57,7 @@ #include "llvm/IR/Verifier.h" #include "llvm/InitializePasses.h" #include "llvm/Pass.h" +#include "llvm/Support/CommandLine.h" #include "llvm/Support/Debug.h" #include "llvm/Support/raw_ostream.h" #include "llvm/Transforms/Scalar.h" |