summaryrefslogtreecommitdiffstats
path: root/lib/CodeGen
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2012-04-10 05:04:04 +0000
committerEric Christopher <echristo@apple.com>2012-04-10 05:04:04 +0000
commitfc65ec83f6719f06e460b61f83a3ba1e80c18d04 (patch)
tree948fd194415bba2f5f8641e1fc7b36bf38b72a62 /lib/CodeGen
parentc56298d87a9df507805a548d7d515e8b511df2c0 (diff)
Tidy.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@154383 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r--lib/CodeGen/CGStmt.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/CGStmt.cpp b/lib/CodeGen/CGStmt.cpp
index 670167b959..e82a15ef77 100644
--- a/lib/CodeGen/CGStmt.cpp
+++ b/lib/CodeGen/CGStmt.cpp
@@ -1178,8 +1178,8 @@ void CodeGenFunction::EmitSwitchStmt(const SwitchStmt &S) {
for (unsigned i = 0, e = CaseStmts.size(); i != e; ++i)
EmitStmt(CaseStmts[i]);
- // Now we want to restore the saved switch instance so that nested switches
- // continue to function properly
+ // Now we want to restore the saved switch instance so that nested
+ // switches continue to function properly
SwitchInsn = SavedSwitchInsn;
return;