Changes in / [a951171:673eb7a]


Ignore:
Files:
2 deleted
6 edited

Legend:

Unmodified
Added
Removed
  • Jenkinsfile

    ra951171 r673eb7a  
    102102
    103103                echo GitLogMessage()
     104
     105                // This is a complete hack but it solves problems with automake thinking it needs to regenerate makefiles
     106                // We fudged automake/missing to handle that but automake stills bakes prints inside the makefiles
     107                // and these cause more problems.
     108                sh 'find . -name Makefile.in -exec touch {} +'
    104109        }
    105110}
     
    460465                                        description: 'Which compiler to use',                                   \
    461466                                        name: 'Compiler',                                                                       \
    462                                         choices: 'gcc-9\ngcc-8\ngcc-7\ngcc-6\ngcc-5\ngcc-4.9\nclang',   \
     467                                        choices: 'gcc-9\ngcc-8\ngcc-7\ngcc-6\ngcc-5\ngcc-4.9\nclang',                                   \
    463468                                        defaultValue: 'gcc-8',                                                          \
    464469                                ],                                                                                              \
  • src/Common/Stats/Stats.cc

    ra951171 r673eb7a  
    3535        }
    3636
    37         namespace ResolveTime {
    38                 bool enabled = false;
    39         }
    40 
    4137        struct {
    4238                const char * const opt;
     
    4743                { "heap"    , Heap::enabled },
    4844                { "time"    , Time::enabled },
    49                 { "resolve" , ResolveTime::enabled },
    5045        };
    5146
  • src/Common/module.mk

    ra951171 r673eb7a  
    4040      Common/Stats/Heap.cc \
    4141      Common/Stats/Heap.h \
    42       Common/Stats/ResolveTime.cc \
    43       Common/Stats/ResolveTime.h \
    4442      Common/Stats/Stats.cc \
    4543      Common/Stats/Time.cc \
  • src/ResolvExpr/Resolver.cc

    ra951171 r673eb7a  
    3838#include "Common/PassVisitor.h"          // for PassVisitor
    3939#include "Common/SemanticError.h"        // for SemanticError
    40 #include "Common/Stats/ResolveTime.h"    // for ResolveTime::start(), ResolveTime::stop()
    4140#include "Common/utility.h"              // for ValueGuard, group_iterate
    4241#include "InitTweak/GenInit.h"
     
    11701169                        const ast::Expr * untyped, const ast::SymbolTable & symtab
    11711170                ) {
    1172                         Stats::ResolveTime::start( untyped );
    1173                         auto res = findKindExpression( untyped, symtab );
    1174                         Stats::ResolveTime::stop();
    1175                         return res;
     1171                        return findKindExpression( untyped, symtab );
    11761172                }
    11771173        } // anonymous namespace
  • tests/Makefile.am

    ra951171 r673eb7a  
    114114        $(CFACOMPILETEST) -c -o $(abspath ${@}).o
    115115        $(CFACCLINK) ${@}.o -o $(abspath ${@})
    116         rm $(abspath ${@}).o
    117116
    118117# implicit rule for c++ test
     
    183182        $(CFACOMPILETEST) -O0 -c -o $(abspath ${@}).o
    184183        $(CFACCLINK)  -O0 ${@}.o -o $(abspath ${@})
    185         rm $(abspath ${@}).o
    186184
    187185#------------------------------------------------------------------------------
  • tests/linking/.expect/linkerror.txt

    ra951171 r673eb7a  
     1CFA Version 1.0.0 (debug)
    12linking/linkerror.o: In function `_X4mainFi___1':
    23linking/linkerror.cfa:6: undefined reference to `_X18this_doesnot_existFv_i__1'
Note: See TracChangeset for help on using the changeset viewer.