ADT
        arm-eh
        ast-experimental
        enum
        forall-pointer-decay
        jacob/cs343-translation
        new-ast-unique-expr
        pthread-emulation
        qualifiedEnum
      
      
        
          | 
            Last change
 on this file since 7bd23ce was             f57faf6f, checked in by Andrew Beach <ajbeach@…>, 5 years ago           | 
        
        
          | 
             
Added a new-ast tools for code locations. The fill pass is being used the check pass is catching lots of missing locations when you enable it. 
 
           | 
        
        
          
            
              - 
Property                 mode
 set to                 
100644
               
             
           | 
        
        
          | 
            File size:
            1.7 KB
           | 
        
      
      
| Line |   | 
|---|
| 1 | ######################### -*- Mode: Makefile-Gmake -*- ########################
 | 
|---|
| 2 | ##
 | 
|---|
| 3 | ## Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
 | 
|---|
| 4 | ##
 | 
|---|
| 5 | ## The contents of this file are covered under the licence agreement in the
 | 
|---|
| 6 | ## file "LICENCE" distributed with Cforall.
 | 
|---|
| 7 | ##
 | 
|---|
| 8 | ## module.mk --
 | 
|---|
| 9 | ##
 | 
|---|
| 10 | ## Author           : Richard C. Bilson
 | 
|---|
| 11 | ## Created On       : Mon Jun  1 17:49:17 2015
 | 
|---|
| 12 | ## Last Modified By : Peter A. Buhr
 | 
|---|
| 13 | ## Last Modified On : Tue Sep 27 11:06:38 2016
 | 
|---|
| 14 | ## Update Count     : 4
 | 
|---|
| 15 | ###############################################################################
 | 
|---|
| 16 | 
 | 
|---|
| 17 | SRC_COMMON = \
 | 
|---|
| 18 |       Common/Assert.cc \
 | 
|---|
| 19 |       Common/CodeLocation.h \
 | 
|---|
| 20 |       Common/CodeLocationTools.hpp \
 | 
|---|
| 21 |       Common/CodeLocationTools.cpp \
 | 
|---|
| 22 |       Common/CompilerError.h \
 | 
|---|
| 23 |       Common/Debug.h \
 | 
|---|
| 24 |       Common/ErrorObjects.h \
 | 
|---|
| 25 |       Common/Eval.cc \
 | 
|---|
| 26 |       Common/Examine.cc \
 | 
|---|
| 27 |       Common/Examine.h \
 | 
|---|
| 28 |       Common/FilterCombos.h \
 | 
|---|
| 29 |       Common/Indenter.h \
 | 
|---|
| 30 |       Common/PassVisitor.cc \
 | 
|---|
| 31 |       Common/PassVisitor.h \
 | 
|---|
| 32 |       Common/PassVisitor.impl.h \
 | 
|---|
| 33 |       Common/PassVisitor.proto.h \
 | 
|---|
| 34 |       Common/PersistentMap.h \
 | 
|---|
| 35 |       Common/ScopedMap.h \
 | 
|---|
| 36 |       Common/SemanticError.cc \
 | 
|---|
| 37 |       Common/SemanticError.h \
 | 
|---|
| 38 |       Common/Stats.h \
 | 
|---|
| 39 |       Common/Stats/Base.h \
 | 
|---|
| 40 |       Common/Stats/Counter.cc \
 | 
|---|
| 41 |       Common/Stats/Counter.h \
 | 
|---|
| 42 |       Common/Stats/Heap.cc \
 | 
|---|
| 43 |       Common/Stats/Heap.h \
 | 
|---|
| 44 |       Common/Stats/ResolveTime.cc \
 | 
|---|
| 45 |       Common/Stats/ResolveTime.h \
 | 
|---|
| 46 |       Common/Stats/Stats.cc \
 | 
|---|
| 47 |       Common/Stats/Time.cc \
 | 
|---|
| 48 |       Common/Stats/Time.h \
 | 
|---|
| 49 |       Common/UnimplementedError.h \
 | 
|---|
| 50 |       Common/UniqueName.cc \
 | 
|---|
| 51 |       Common/UniqueName.h \
 | 
|---|
| 52 |       Common/utility.h \
 | 
|---|
| 53 |       Common/VectorMap.h
 | 
|---|
| 54 | 
 | 
|---|
| 55 | SRC += $(SRC_COMMON) Common/DebugMalloc.cc
 | 
|---|
| 56 | SRCDEMANGLE += $(SRC_COMMON)
 | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.