index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
test
/
CodeGenCXX
/
mangle-subst-std.cpp
Age
Commit message (
Expand
)
Author
2011-09-26
Remove CodeGenVTables::ComputeVTableRelatedInformation dependency on CodeGen
Peter Collingbourne
2011-07-09
clang side to match the LLVM IR type system rewrite patch.
Chris Lattner
2011-05-16
Fix another regression from the "skip vtable pointer initialization"
Anders Carlsson
2011-05-15
Re-enable the fix for PR9181 now that all the edge cases are handled.
Anders Carlsson
2011-05-15
Disable the optimization until the bug noticed by Sean Hunt has been fixed.
Anders Carlsson
2011-05-14
When emitting the destructor for a class with a vtable, if we can determine
Anders Carlsson
2011-03-27
We were emitting construction v-tables with internal linkage all the time.
John McCall
2011-01-29
Make emitting a VTT a two-step process, much like emitting a VTable. You firs...
Anders Carlsson
2011-01-25
Move unnamed_addr after the function arguments on Sabre's request.
Rafael Espindola
2011-01-24
Mark VTables and RTTI data linkonce_odr instead of weak_odr, with the excepti...
Anders Carlsson
2011-01-11
Set unnamed_addr in VTTs.
Rafael Espindola
2011-01-11
Add unnamed_addr to vtables.
Rafael Espindola
2011-01-11
Add unnamed_addr to constructors and destructors.
Rafael Espindola
2010-08-05
It turns out that linkers (at least, the Darwin linker) don't necessarily
John McCall
2010-08-04
Extend the hidden-visibility vtables optimization to template classes that
John McCall
2010-06-02
Don't substitute 'St' for 'std' when the namespace is nested inside another n...
Anders Carlsson
2010-05-26
Be sure to use the standard substitutions when mangling the names of
Douglas Gregor
2010-02-23
PR6400: Handle an extreme edge case in mangling correctly.
Eli Friedman
2010-02-18
Revert the ctor/dtor alias optimization for now; the buildbots can detect
John McCall
2010-02-17
Emit complete constructors and destructors as aliases to base constructors
John McCall
2009-12-15
Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.
Daniel Dunbar
2009-12-07
Mangle basic_ostream and basic_iostream specializations.
Anders Carlsson
2009-12-04
Correctly mangle the 'std' namespace inside extern "C++" blocks.
Anders Carlsson
2009-10-08
Mangle std::basic_ostream<char, std::char_traits<char>> as So.
Anders Carlsson
2009-09-29
Remove PR5061 workaround.
Anders Carlsson
2009-09-27
Mangle std::basic_string<char, std::char_traits<char>, std::allocator<char> >...
Anders Carlsson
2009-09-26
Mangle ::std::basic_string as Sb.
Anders Carlsson
2009-09-26
Mangle ::std::allocator as Sa.
Anders Carlsson
2009-09-26
Substitute "::std::" as "St".
Anders Carlsson