aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/MachineFunction.cpp
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2009-05-14 00:28:11 +0000
committerDouglas Gregor <dgregor@apple.com>2009-05-14 00:28:11 +0000
commit2ec748cd5a66e0d8ac3c83887e5014f81e95204c (patch)
tree8028813c3ecd1d35a53eef3be7b1755a9c76a1cb /llvm/lib/CodeGen/MachineFunction.cpp
parent0e78566e0207a4cfe8a512ea667f90399f2b255a (diff)
downloadllvm-2ec748cd5a66e0d8ac3c83887e5014f81e95204c.zip
llvm-2ec748cd5a66e0d8ac3c83887e5014f81e95204c.tar.gz
llvm-2ec748cd5a66e0d8ac3c83887e5014f81e95204c.tar.bz2
Implement explicit instantiations of member classes of class templates, e.g.,
template<typename T> struct X { struct Inner; }; template struct X<int>::Inner; This change is larger than it looks because it also fixes some a problem with nested-name-specifiers and tags. We weren't requiring the DeclContext associated with the scope specifier of a tag to be complete. Therefore, when looking for something like "struct X<int>::Inner", we weren't instantiating X<int>. This, naturally, uncovered a problem with member pointers, where we were requiring the left-hand side of a member pointer access expression (e.g., x->*) to be a complete type. However, this is wrong: the semantics of this expression does not require a complete type (EDG agrees). Stuart vouched for me. Blame him. llvm-svn: 71756
Diffstat (limited to 'llvm/lib/CodeGen/MachineFunction.cpp')
0 files changed, 0 insertions, 0 deletions