Changeset e765794


Ignore:
Timestamp:
Aug 11, 2018, 5:07:27 PM (6 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
Children:
26f4dbe
Parents:
93c2e0a
Message:

remove old bool hack and adjust output

Location:
src/tests/raii
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/tests/raii/.expect/dtor-early-exit-ERR1.txt

    r93c2e0a re765794  
    1 raii/dtor-early-exit.c:153:1 error: jump to label 'L1' crosses initialization of y Branch (Goto)
     1raii/dtor-early-exit.c:150:1 error: jump to label 'L1' crosses initialization of y Branch (Goto)
    22  with target: L1
    33  with original target: L1
  • src/tests/raii/.expect/dtor-early-exit-ERR2.txt

    r93c2e0a re765794  
    1 raii/dtor-early-exit.c:217:1 error: jump to label 'L2' crosses initialization of y Branch (Goto)
     1raii/dtor-early-exit.c:214:1 error: jump to label 'L2' crosses initialization of y Branch (Goto)
    22  with target: L2
    33  with original target: L2
  • src/tests/raii/dtor-early-exit.c

    r93c2e0a re765794  
    1010// Created On       : Wed Aug 17 08:26:25 2016
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed Aug 17 08:29:37 2016
    13 // Update Count     : 2
     12// Last Modified On : Sat Aug 11 07:58:39 2018
     13// Update Count     : 8
    1414//
    1515
    1616#include <fstream>
    1717#include <stdlib>
    18 extern "C" {
    19 #define false ((int)0)  // until stdbool.h works
    20 #define assert(cond) if (! (cond)) { sout | "Assertion failed: (" | #cond | ") at " __FILE__ | ":" | __LINE__ | endl; abort(); }
    21 }
     18#include <assert.h>
    2219
    2320struct A {
Note: See TracChangeset for help on using the changeset viewer.