Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SymTab/Mangler.cc

    r615a096 r064cb18  
    99// Author           : Richard C. Bilson
    1010// Created On       : Sun May 17 21:40:29 2015
    11 // Last Modified By : Peter A. Buhr
    12 // Last Modified On : Fri Mar 17 09:40:01 2017
    13 // Update Count     : 20
     11// Last Modified By : Rob Schluntz
     12// Last Modified On : Wed Aug 19 15:52:24 2015
     13// Update Count     : 19
    1414//
    1515
     
    294294                        mangleName << "_";
    295295                } // if
    296                 if ( type->get_const() ) {
     296                if ( type->get_isConst() ) {
    297297                        mangleName << "C";
    298298                } // if
    299                 if ( type->get_volatile() ) {
     299                if ( type->get_isVolatile() ) {
    300300                        mangleName << "V";
    301301                } // if
     
    304304//                      mangleName << "R";
    305305//              } // if
    306                 if ( type->get_lvalue() ) {
     306                if ( type->get_isLvalue() ) {
    307307                        mangleName << "L";
    308308                } // if
    309                 if ( type->get_atomic() ) {
     309                if ( type->get_isAtomic() ) {
    310310                        mangleName << "A";
    311311                } // if
Note: See TracChangeset for help on using the changeset viewer.