summaryrefslogtreecommitdiff
path: root/lib/Transforms/Utils/LoopUnroll.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2011-01-11 08:00:40 +0000
committerChris Lattner <sabre@nondot.org>2011-01-11 08:00:40 +0000
commitb298db72531e607c4c4db31df3373f74a9b983b1 (patch)
tree6987036026f4011e9d76aba9ea01c494fcf57eb3 /lib/Transforms/Utils/LoopUnroll.cpp
parent86099ba2b5cf27127e0f5b7a1289b6d076687960 (diff)
downloadllvm-b298db72531e607c4c4db31df3373f74a9b983b1.tar.gz
llvm-b298db72531e607c4c4db31df3373f74a9b983b1.tar.bz2
llvm-b298db72531e607c4c4db31df3373f74a9b983b1.tar.xz
random cleanups
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123221 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils/LoopUnroll.cpp')
-rw-r--r--lib/Transforms/Utils/LoopUnroll.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Transforms/Utils/LoopUnroll.cpp b/lib/Transforms/Utils/LoopUnroll.cpp
index 6e8532f122..dd8c154fdd 100644
--- a/lib/Transforms/Utils/LoopUnroll.cpp
+++ b/lib/Transforms/Utils/LoopUnroll.cpp
@@ -16,6 +16,7 @@
//
// The process of unrolling can produce extraneous basic blocks linked with
// unconditional branches. This will be corrected in the future.
+//
//===----------------------------------------------------------------------===//
#define DEBUG_TYPE "loop-unroll"
@@ -30,12 +31,11 @@
#include "llvm/Transforms/Utils/BasicBlockUtils.h"
#include "llvm/Transforms/Utils/Cloning.h"
#include "llvm/Transforms/Utils/Local.h"
-
using namespace llvm;
// TODO: Should these be here or in LoopUnroll?
STATISTIC(NumCompletelyUnrolled, "Number of loops completely unrolled");
-STATISTIC(NumUnrolled, "Number of loops unrolled (completely or otherwise)");
+STATISTIC(NumUnrolled, "Number of loops unrolled (completely or otherwise)");
/// RemapInstruction - Convert the instruction operands from referencing the
/// current values into those specified by VMap.