diff options
author | Eric Christopher <echristo@apple.com> | 2012-04-10 05:04:04 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2012-04-10 05:04:04 +0000 |
commit | cdbde6973afd68f4675a79872a81fe1108f4d23f (patch) | |
tree | 5a79365804dee0fdc9c8ecb0171fc1bdaa400a8b /clang/lib | |
parent | 7d52db98647d5615014cc4272ef840d44e9c997a (diff) | |
download | bcm5719-llvm-cdbde6973afd68f4675a79872a81fe1108f4d23f.tar.gz bcm5719-llvm-cdbde6973afd68f4675a79872a81fe1108f4d23f.zip |
Tidy.
llvm-svn: 154383
Diffstat (limited to 'clang/lib')
-rw-r--r-- | clang/lib/CodeGen/CGStmt.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CGStmt.cpp b/clang/lib/CodeGen/CGStmt.cpp index 670167b9590..e82a15ef777 100644 --- a/clang/lib/CodeGen/CGStmt.cpp +++ b/clang/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; |