Changeset 397c101a for tests


Ignore:
Timestamp:
Nov 27, 2019, 4:43:51 PM (5 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
524627e, 78cdb06, d4f1521
Parents:
152c2b2
Message:

Fix bug where 'continue' would incorrectly claim to skip initialization Fixes #150?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/raii/dtor-early-exit.cfa

    r152c2b2 r397c101a  
    217217}
    218218
     219void i() {
     220        // potential loop
     221        for() {
     222                if(true) continue;
     223                int t = 0;
     224        }
     225}
     226
    219227// TODO: implement __label__ and uncomment these lines
    220228void computedGoto() {
Note: See TracChangeset for help on using the changeset viewer.