Add 'const' qualifiers to static const char* variables.
llvm-svn: 186371
diff --git a/llvm/lib/Transforms/Scalar/StructurizeCFG.cpp b/llvm/lib/Transforms/Scalar/StructurizeCFG.cpp
index bec066b..bb6f163 100644
--- a/llvm/lib/Transforms/Scalar/StructurizeCFG.cpp
+++ b/llvm/lib/Transforms/Scalar/StructurizeCFG.cpp
@@ -45,7 +45,7 @@
// The name for newly created blocks.
-static const char *FlowBlockName = "Flow";
+static const char *const FlowBlockName = "Flow";
/// @brief Find the nearest common dominator for multiple BasicBlocks
///