Ignore:
Timestamp:
Mar 18, 2016, 1:56:41 PM (8 years ago)
Author:
Rob Schluntz <rschlunt@…>
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, with_gc
Children:
6943f051
Parents:
dac0aa9
Message:

added missing char ctor/dtors to prelude

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/prelude.cf

    rdac0aa9 rf5ef08c  
    639639// default ctor
    640640void    ?{}( _Bool * ),                         ?{}( volatile _Bool * );
    641 void    ?{}( unsigned char * ),                 ?{}( volatile unsigned char * );
     641void    ?{}( char * ),  ?{}( volatile char * );
     642void    ?{}( unsigned char * ), ?{}( volatile unsigned char * );
     643void    ?{}( char signed * ),                   ?{}( volatile char signed * );
     644void    ?{}( int short * ),                             ?{}( volatile int short * );
     645void    ?{}( int short unsigned * ),    ?{}( volatile int short unsigned * );
    642646void    ?{}( signed int * ),                    ?{}( volatile signed int * );
    643647void    ?{}( unsigned int * ),                  ?{}( volatile unsigned int * );
     
    655659// copy ctor
    656660void    ?{}( _Bool *, _Bool ),                                  ?{}( volatile _Bool *, _Bool );
     661void    ?{}( char *, char ),    ?{}( volatile char *, char );
    657662void    ?{}( unsigned char *, unsigned char ),                  ?{}( volatile unsigned char *, unsigned char );
     663void    ?{}( char signed *, char signed ),                      ?{}( volatile char signed *, char signed );
     664void    ?{}( int short *, int short ),                          ?{}( volatile int short *, int short );
     665void    ?{}( int short unsigned *, int short unsigned ),        ?{}( volatile int short unsigned *, int short unsigned );
    658666void    ?{}( signed int *, signed int),                         ?{}( volatile signed int *, signed int );
    659667void    ?{}( unsigned int *, unsigned int),                     ?{}( volatile unsigned int *, unsigned int );
     
    671679// dtor
    672680void    ^?{}( _Bool * ),                        ^?{}( volatile _Bool * );
     681void    ^?{}( char * ), ^?{}( volatile char * );
     682void    ^?{}( char unsigned * ),                        ^?{}( volatile char unsigned * );
     683void    ^?{}( char signed * ),                  ^?{}( volatile char signed * );
     684void    ^?{}( int short * ),                            ^?{}( volatile int short * );
     685void    ^?{}( int short unsigned * ),   ^?{}( volatile int short unsigned * );
    673686void    ^?{}( signed int * ),                   ^?{}( volatile signed int * );
    674687void    ^?{}( unsigned int * ),                 ^?{}( volatile unsigned int * );
Note: See TracChangeset for help on using the changeset viewer.