diff options
author | Eric Christopher <echristo@gmail.com> | 2013-03-25 20:05:35 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-03-25 20:05:35 +0000 |
commit | 259021a5621fd3837db79934ea5880cb846bfc44 (patch) | |
tree | 57ba8a559e5828f4652c424140c09fd94c7eceaf /lib/CodeGen | |
parent | 3cf2dba90fcb6478db64205d936f67e4adf96719 (diff) | |
download | external_llvm-259021a5621fd3837db79934ea5880cb846bfc44.zip external_llvm-259021a5621fd3837db79934ea5880cb846bfc44.tar.gz external_llvm-259021a5621fd3837db79934ea5880cb846bfc44.tar.bz2 |
Formatting.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177898 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r-- | lib/CodeGen/StackColoring.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/CodeGen/StackColoring.cpp b/lib/CodeGen/StackColoring.cpp index ec44b8c..9a3d24a 100644 --- a/lib/CodeGen/StackColoring.cpp +++ b/lib/CodeGen/StackColoring.cpp @@ -67,14 +67,14 @@ DisableColoring("no-stack-coloring", /// code. If this flag is enabled, we try to save the user. static cl::opt<bool> ProtectFromEscapedAllocas("protect-from-escaped-allocas", - cl::init(false), cl::Hidden, - cl::desc("Do not optimize lifetime zones that are broken")); + cl::init(false), cl::Hidden, + cl::desc("Do not optimize lifetime zones that " + "are broken")); STATISTIC(NumMarkerSeen, "Number of lifetime markers found."); STATISTIC(StackSpaceSaved, "Number of bytes saved due to merging slots."); STATISTIC(StackSlotMerged, "Number of stack slot merged."); -STATISTIC(EscapedAllocas, - "Number of allocas that escaped the lifetime region"); +STATISTIC(EscapedAllocas, "Number of allocas that escaped the lifetime region"); //===----------------------------------------------------------------------===// // StackColoring Pass |