Changes in src/SymTab/Mangler.cc [4071778:6f096d2]
- File:
-
- 1 edited
-
src/SymTab/Mangler.cc (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SymTab/Mangler.cc
r4071778 r6f096d2 10 10 // Created On : Sun May 17 21:40:29 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Jul 30 13:46:10 201913 // Update Count : 2 612 // Last Modified On : Mon Sep 25 15:49:26 2017 13 // Update Count : 23 14 14 // 15 15 #include "Mangler.h" … … 377 377 mangleName << Encoding::qualifiers.at(Type::Mutex); 378 378 } // if 379 if ( type->get_lvalue() ) { 380 // mangle based on whether the type is lvalue, so that the resolver can differentiate lvalues and rvalues 381 mangleName << Encoding::qualifiers.at(Type::Lvalue); 382 } 383 379 384 if ( inFunctionType ) { 380 385 // turn off inFunctionType so that types can be differentiated for nested qualifiers … … 719 724 mangleName << Encoding::qualifiers.at(Type::Mutex); 720 725 } // if 726 if ( type->is_lvalue() ) { 727 // mangle based on whether the type is lvalue, so that the resolver can differentiate lvalues and rvalues 728 mangleName << Encoding::qualifiers.at(Type::Lvalue); 729 } 730 721 731 if ( inFunctionType ) { 722 732 // turn off inFunctionType so that types can be differentiated for nested qualifiers
Note:
See TracChangeset
for help on using the changeset viewer.