Fix a couple of wrong-code bugs in switch-on-constant optimization:
* recurse through intermediate LabelStmts and AttributedStmts when checking whether a statement inside a switch declares a variable * if the end of a compound statement is reachable from the chosen case label, and the compound statement contains a variable declaration, it's not valid to just emit the contents of the compound statement -- we must emit the statement itself or we lose the scope (and thus end lifetimes at the wrong point) git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@281797 91177308-0d34-0410-b5e6-96231b3b80d8
Showing
- lib/CodeGen/CGStmt.cpp 31 additions, 2 deletionslib/CodeGen/CGStmt.cpp
- lib/CodeGen/CodeGenFunction.cpp 23 additions, 0 deletionslib/CodeGen/CodeGenFunction.cpp
- lib/CodeGen/CodeGenFunction.h 4 additions, 0 deletionslib/CodeGen/CodeGenFunction.h
- test/CodeGenCXX/switch-case-folding-2.cpp 80 additions, 2 deletionstest/CodeGenCXX/switch-case-folding-2.cpp
Loading
Please register or sign in to comment