diff options
Diffstat (limited to 'llvm/lib/Transforms/Vectorize/VPlanHCFGBuilder.cpp')
-rw-r--r-- | llvm/lib/Transforms/Vectorize/VPlanHCFGBuilder.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/Transforms/Vectorize/VPlanHCFGBuilder.cpp b/llvm/lib/Transforms/Vectorize/VPlanHCFGBuilder.cpp index 4eb0a5d4cef..16f410dfba4 100644 --- a/llvm/lib/Transforms/Vectorize/VPlanHCFGBuilder.cpp +++ b/llvm/lib/Transforms/Vectorize/VPlanHCFGBuilder.cpp @@ -30,6 +30,7 @@ using namespace llvm; +namespace { // Class that is used to build the plain CFG for the incoming IR. class PlainCFGBuilder { private: @@ -74,6 +75,7 @@ public: // Build the plain CFG and return its Top Region. VPRegionBlock *buildPlainCFG(); }; +} // anonymous namespace // Return true if \p Inst is an incoming Instruction to be ignored in the VPlan // representation. |