Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / analysis-tests / green-tored-badpath.cpp
1 #include "jstypes.h"
2
3 JS_REQUIRES_STACK void RedFunc();
4
5 JS_FORCES_STACK void TurnRedFunc();
6
7 void GreenPartlyRedFunc(int i)
8 {
9   if (i) {
10     TurnRedFunc();
11   }
12
13   RedFunc();
14 }