Changeset 5f2f2d7 for src/examples


Ignore:
Timestamp:
Jun 8, 2015, 8:56:35 PM (10 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, string, with_gc
Children:
81419b5
Parents:
cd623a4
Message:

fix constant types, remove unnecessary string copying, work on regression testing, fix several memory leaks

Location:
src/examples
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified src/examples/constants.c

    rcd623a4 r5f2f2d7  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Sat Jun  6 15:08:43 2015
    13 // Update Count     : 63
     12// Last Modified On : Mon Jun  8 20:44:48 2015
     13// Update Count     : 75
    1414//
    1515
     
    1717        1_234_Ul;
    1818        -0_177;
    19         017777777777;
    20         037777777777;
     19        017_777_777_777;
     20        037_777_777_777;
    2121        0x_7f_FF_ff_FF;
    2222        0x_ff_FF_ff_FF;
    2323        2_147_483_647;
    2424        4_294_967_295;
    25         0777777777777777777777;
    26         01777777777777777777777;
     25        4_294_967_296;
     26        4_294_967_296U;
     27        0_777_777_777_777_777_777_777;
     28        01_777_777_777_777_777_777_777;
     29        0;
     30        0L;
     31        0LL;
     32        1;
     33        1L;
     34        1LL;
     35        10;
     36        10L;
     37        10LL;
     38        2U;
     39        2UL;
     40        2ULL;
     41        2LU;
     42        2LLU;
    2743        0x_7f_FF_ff_FF_ff_FF_ff_FF;
    2844        0x_ff_FF_ff_FF_ff_FF_ff_FF;
    2945        9_223_372_036_854_775_807;
    3046        18_446_744_073_709_551_615;
     47        3.141_59f;
     48        3.14159;
    3149        12.123_333_E_27L;
    3250        0X_1.ff_ff_ff_ff_ff_fff_P_1023;
  • TabularUnified src/examples/includes.c

    rcd623a4 r5f2f2d7  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed Jun  3 23:48:26 2015
    13 // Update Count     : 6
     12// Last Modified On : Mon Jun  8 15:54:17 2015
     13// Update Count     : 7
    1414//
    1515
Note: See TracChangeset for help on using the changeset viewer.