Changeset 356189a for src/libcfa


Ignore:
Timestamp:
Apr 14, 2016, 5:11:26 PM (9 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:
b617e4b
Parents:
70a06f6
git-author:
Rob Schluntz <rschlunt@…> (04/14/16 17:10:08)
git-committer:
Rob Schluntz <rschlunt@…> (04/14/16 17:11:26)
Message:

output intrinsic constructor expressions as void expression or C assignment, don't generate field constructor which takes unnamed bitfield as a parameter

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/fstream.c

    r70a06f6 r356189a  
    55// file "LICENCE" distributed with Cforall.
    66//
    7 // fstream.c -- 
     7// fstream.c --
    88//
    99// Author           : Peter A. Buhr
    1010// Created On       : Wed May 27 17:56:53 2015
    11 // Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed Apr  6 17:55:27 2016
     11// Last Modified By : Rob Schluntz
     12// Last Modified On : Thu Apr 14 17:04:24 2016
    1313// Update Count     : 176
    1414//
     
    7575        if ( fclose( (FILE *)(os->file) ) == EOF ) {
    7676                perror( IO_MSG "close output" );
    77         } // if 
     77        } // if
    7878} // close
    7979
     
    139139        if ( fclose( (FILE *)(is->file) ) == EOF ) {
    140140                perror( IO_MSG "close input" );
    141         } // if 
     141        } // if
    142142} // close
    143143
     
    154154        return is;
    155155} // read
    156  
     156
    157157ifstream *ungetc( ifstream * is, char c ) {
    158158        if ( fail( is ) ) {
Note: See TracChangeset for help on using the changeset viewer.