diff options
author | Sanjoy Das <sanjoy@playingwithpointers.com> | 2016-06-26 05:42:52 +0000 |
---|---|---|
committer | Sanjoy Das <sanjoy@playingwithpointers.com> | 2016-06-26 05:42:52 +0000 |
commit | 9d08642c64c90c132fbb4870027e58d7596c4255 (patch) | |
tree | 59dfeff2cec9b67478121cfbb2c1adb84cd7fd16 | |
parent | 8f577fd5b5192203e1a54e4f5abe11341d6994ed (diff) | |
download | bcm5719-llvm-9d08642c64c90c132fbb4870027e58d7596c4255.tar.gz bcm5719-llvm-9d08642c64c90c132fbb4870027e58d7596c4255.zip |
[RSForGC] Appease MSVC
llvm-svn: 273805
-rw-r--r-- | llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp b/llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp index 7a9a1138121..a4b8519c910 100644 --- a/llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp +++ b/llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp @@ -729,8 +729,9 @@ static Value *findBasePointer(Value *I, DefiningValueMapTy &Cache) { #ifndef NDEBUG DEBUG(dbgs() << "States after initialization:\n"); - for (auto Pair : States) + for (auto Pair : States) { DEBUG(dbgs() << " " << Pair.second << " for " << *Pair.first << "\n"); + } #endif // Return a phi state for a base defining value. We'll generate a new @@ -798,8 +799,9 @@ static Value *findBasePointer(Value *I, DefiningValueMapTy &Cache) { #ifndef NDEBUG DEBUG(dbgs() << "States after meet iteration:\n"); - for (auto Pair : States) + for (auto Pair : States) { DEBUG(dbgs() << " " << Pair.second << " for " << *Pair.first << "\n"); + } #endif // Insert Phis for all conflicts |