Changeset c0af102 for src/SymTab


Ignore:
Timestamp:
May 13, 2022, 10:41:01 AM (2 years ago)
Author:
Andrew Beach <ajbeach@…>
Branches:
ADT, ast-experimental, master, pthread-emulation, qualifiedEnum
Children:
8108ba8
Parents:
8060b2b
Message:

Reorganization of some demangler code so header and code file match.

Location:
src/SymTab
Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • src/SymTab/Demangle.cc

    r8060b2b rc0af102  
    55// file "LICENCE" distributed with Cforall.
    66//
    7 // Demangler.cc --
     7// Demangle.cc -- Convert a mangled name into a human readable name.
    88//
    99// Author           : Rob Schluntz
  • src/SymTab/Mangler.h

    r8060b2b rc0af102  
    111111}
    112112
    113 extern "C" {
    114         char * cforall_demangle(const char *, int);
    115 }
    116 
    117113// Local Variables: //
    118114// tab-width: 4 //
  • src/SymTab/demangler.cc

    r8060b2b rc0af102  
    1 #include "Mangler.h"
     1#include "Demangle.h"
    22#include <iostream>
    33#include <fstream>
  • src/SymTab/module.mk

    r8060b2b rc0af102  
    2929
    3030SRC += $(SRC_SYMTAB)
    31 SRCDEMANGLE += $(SRC_SYMTAB) SymTab/Demangle.cc
     31SRCDEMANGLE += $(SRC_SYMTAB) \
     32        SymTab/Demangle.cc \
     33        SymTab/Demangle.h
Note: See TracChangeset for help on using the changeset viewer.