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
/
rtti-linkage.cpp
Age
Commit message (
Expand
)
Author
2011-01-29
When emitting RTTI for a non-class type, compute the visibility of the RTTI d...
Anders Carlsson
2011-01-29
Update tests.
Anders Carlsson
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 every type info.
Rafael Espindola
2011-01-11
Set unnamed_addr for type infos that we are confortable marking as hidden. I
Rafael Espindola
2010-12-17
Give hidden visibility to RTTI for derived types. This is kindof a hacky
John McCall
2010-11-08
test/CodeGenCXX/rtti-linkage.cpp: Get rid of sort(1) to remove XFAIL: win32.
NAKAMURA Takumi
2010-10-11
Don't let typeinfo name symbols be 'internal hidden', it can lead to linker c...
Argyrios Kyrtzidis
2010-08-12
Just disable the hidden-visibility optimization for now by hiding it behind
John McCall
2010-08-05
It turns out that linkers (at least, the Darwin linker) don't necessarily
John McCall
2010-08-04
Emit standard-library RTTI with external linkage, not weak_odr.
John McCall
2010-06-02
typeid() produces type information for the cv-unqualified version of
Douglas Gregor
2010-05-14
XFAIL a test on Win32.
Daniel Dunbar
2010-05-13
Rework when and how vtables are emitted, by tracking where vtables are
Douglas Gregor
2010-03-31
Drastically simplify the computation of linkage for typeinfo by using
Douglas Gregor
2009-12-31
If the key function of a record is inline, then the RTTI data should have wea...
Anders Carlsson
2009-12-30
More RTTI cleanup, test that RTTI classes have the correct vtables.
Anders Carlsson
2009-12-29
Handle enum types as well.
Anders Carlsson
2009-12-29
Fix function type RTTI linkage and add tests.
Anders Carlsson
2009-12-23
Remove cv-qualifiers from the argument to typeid
Douglas Gregor
2009-12-21
Add tests for structs inside anonymous namespaces.
Anders Carlsson
2009-12-21
Incomplete structs should also have internal linkage.
Anders Carlsson
2009-12-20
Correcly handle pointers to member pointer types where the class or the point...
Anders Carlsson
2009-12-20
Rework the way pointer types are handled by the RTTI builder. We now get the ...
Anders Carlsson
2009-12-15
Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.
Daniel Dunbar
2009-12-11
Use GetAddrOfRTTI when getting the RTTI pointer for a base class.
Anders Carlsson