[SCEV] Fix stylistic issue in MatchBinaryAddToConst; NFCI
[oota-llvm.git] / lib / Analysis / RegionPass.cpp
index cd1e944d46a853b4dea7a09a170e360533aa9d88..5e1cdd48a78ee65e5af3bf757707cf5dd959b0dd 100644 (file)
@@ -199,7 +199,7 @@ public:
 
   bool runOnRegion(Region *R, RGPassManager &RGM) override {
     Out << Banner;
-    for (const auto &BB : R->blocks()) {
+    for (const auto *BB : R->blocks()) {
       if (BB)
         BB->print(Out);
       else