diff options
author | Evan Cheng <evan.cheng@apple.com> | 2009-11-09 06:49:22 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2009-11-09 06:49:22 +0000 |
commit | 63040ce85813f4251af7d7a5660f267366360ece (patch) | |
tree | b4c33e36c648fb78491a5a5740725e8fb751b32f | |
parent | 74965f2279af05246a0f9fe4ab50643fea9aa9b0 (diff) | |
download | external_llvm-63040ce85813f4251af7d7a5660f267366360ece.tar.gz external_llvm-63040ce85813f4251af7d7a5660f267366360ece.tar.bz2 external_llvm-63040ce85813f4251af7d7a5660f267366360ece.zip |
80 col.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@86521 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/CodeGen/PreAllocSplitting.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/CodeGen/PreAllocSplitting.cpp b/lib/CodeGen/PreAllocSplitting.cpp index cce5ae817a..374ae66793 100644 --- a/lib/CodeGen/PreAllocSplitting.cpp +++ b/lib/CodeGen/PreAllocSplitting.cpp @@ -39,8 +39,10 @@ using namespace llvm; static cl::opt<int> PreSplitLimit("pre-split-limit", cl::init(-1), cl::Hidden); -static cl::opt<int> DeadSplitLimit("dead-split-limit", cl::init(-1), cl::Hidden); -static cl::opt<int> RestoreFoldLimit("restore-fold-limit", cl::init(-1), cl::Hidden); +static cl::opt<int> DeadSplitLimit("dead-split-limit", cl::init(-1), + cl::Hidden); +static cl::opt<int> RestoreFoldLimit("restore-fold-limit", cl::init(-1), + cl::Hidden); STATISTIC(NumSplits, "Number of intervals split"); STATISTIC(NumRemats, "Number of intervals split by rematerialization"); |