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 | 7f44037c2ec9604f36e96b704898787f5bb89ad9 (patch) | |
tree | 3117eefb1ab58e80aba1000ca606e2ff7162359f /llvm/lib | |
parent | 35b3b545482ae8c90f9467ba6623294592d292ea (diff) | |
download | bcm5719-llvm-7f44037c2ec9604f36e96b704898787f5bb89ad9.tar.gz bcm5719-llvm-7f44037c2ec9604f36e96b704898787f5bb89ad9.zip |
Formatting.
llvm-svn: 177898
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/CodeGen/StackColoring.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/StackColoring.cpp b/llvm/lib/CodeGen/StackColoring.cpp index ec44b8cb595..9a3d24a2fb6 100644 --- a/llvm/lib/CodeGen/StackColoring.cpp +++ b/llvm/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 |