aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGStmt.cpp
diff options
context:
space:
mode:
authorAnders Carlsson <andersca@mac.com>2008-12-20 21:33:38 +0000
committerAnders Carlsson <andersca@mac.com>2008-12-20 21:33:38 +0000
commit7e63b8527fa0b065802fc6cb8cb6124d7c23c4a2 (patch)
tree454c80e0c8c207b54f4b965552bdd174751410c9 /lib/CodeGen/CGStmt.cpp
parent751358ff73b155f5384e151e1d18aa3f6e7b061c (diff)
Check the entire StackSaveValues stack for VLAs when dealing with goto and return statements. Noticed by Eli Friedman.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61289 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGStmt.cpp')
-rw-r--r--lib/CodeGen/CGStmt.cpp16
1 files changed, 10 insertions, 6 deletions
diff --git a/lib/CodeGen/CGStmt.cpp b/lib/CodeGen/CGStmt.cpp
index 6d8f5da015..60e8bd6b7f 100644
--- a/lib/CodeGen/CGStmt.cpp
+++ b/lib/CodeGen/CGStmt.cpp
@@ -220,9 +220,11 @@ void CodeGenFunction::EmitGotoStmt(const GotoStmt &S) {
return;
}
- if (StackSaveValues.back()) {
- CGM.ErrorUnsupported(&S, "goto inside scope with VLA");
- return;
+ for (int i = 0; i < StackSaveValues.size(); i++) {
+ if (StackSaveValues[i]) {
+ CGM.ErrorUnsupported(&S, "goto inside scope with VLA");
+ return;
+ }
}
// If this code is reachable then emit a stop point (if generating
@@ -476,9 +478,11 @@ void CodeGenFunction::EmitReturnOfRValue(RValue RV, QualType Ty) {
/// if the function returns void, or may be missing one if the function returns
/// non-void. Fun stuff :).
void CodeGenFunction::EmitReturnStmt(const ReturnStmt &S) {
- if (StackSaveValues.back()) {
- CGM.ErrorUnsupported(&S, "return inside scope with VLA");
- return;
+ for (int i = 0; i < StackSaveValues.size(); i++) {
+ if (StackSaveValues[i]) {
+ CGM.ErrorUnsupported(&S, "return inside scope with VLA");
+ return;
+ }
}
// Emit the result value, even if unused, to evalute the side effects.