Changeset 1f86d5e for driver


Ignore:
Timestamp:
Feb 10, 2019, 10:12:55 AM (5 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, persistent-indexer, pthread-emulation, qualifiedEnum
Children:
015dc50
Parents:
4fd45bc
Message:

remove unnecessary requirements in configure.ac, add check for -Wcast-function-type and _FloatNN, disable -Wcast-function-type for gcc-8

Location:
driver
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • driver/Makefile.in

    r4fd45bc r1f86d5e  
    187187DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
    188188ACLOCAL = @ACLOCAL@
    189 ALLOCA = @ALLOCA@
    190189AMTAR = @AMTAR@
    191190AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
  • driver/cfa.cc

    r4fd45bc r1f86d5e  
    1010// Created On       : Tue Aug 20 13:44:49 2002
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Tue Jan 15 20:56:03 2019
    13 // Update Count     : 280
     12// Last Modified On : Sun Feb 10 08:28:09 2019
     13// Update Count     : 281
    1414//
    1515
     
    495495                args[nargs] = "-Wno-deprecated";
    496496                nargs += 1;
     497#ifdef HAVE_CAST_FUNCTION_TYPE
     498                args[nargs] = "-Wno-cast-function-type";
     499                nargs += 1;
     500#endif // HAVE_CAST_FUNCTION_TYPE
    497501                if ( ! std_flag ) {                                                             // default c11, if none specified
    498502                        args[nargs] = "-std=gnu11";
Note: See TracChangeset for help on using the changeset viewer.