Add 'const' qualifiers to static const char* variables.
[oota-llvm.git] / lib / Transforms / Scalar / StructurizeCFG.cpp
index bec066b266d05830786250a88b40d3e0356cbf4a..bb6f1632ebaf4b027bd339a536a45d2fdd2ddfc0 100644 (file)
@@ -45,7 +45,7 @@ typedef DenseMap<BasicBlock *, BasicBlock*> BB2BBMap;
 
 // 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
 ///