diff options
author | Mike Stump <mrs@apple.com> | 2009-11-17 02:16:21 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-11-17 02:16:21 +0000 |
commit | ea2c0b5dec07c28222856e66177f0922c9f508b1 (patch) | |
tree | 393c9976d660328c2d79e4cb9595c02fca242353 /lib/CodeGen/CodeGenModule.h | |
parent | a24dc2e38c7fb0f7f138b3d14b5f0f241fd0eccf (diff) |
Add typeid for the builtin types. WIP.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@89028 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenModule.h')
-rw-r--r-- | lib/CodeGen/CodeGenModule.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/CodeGen/CodeGenModule.h b/lib/CodeGen/CodeGenModule.h index 85e4d3d073..c8562d6745 100644 --- a/lib/CodeGen/CodeGenModule.h +++ b/lib/CodeGen/CodeGenModule.h @@ -229,6 +229,9 @@ public: /// GenerateRttiRef - Generate a reference to the rtti information for the /// given type. llvm::Constant *GenerateRttiRef(const CXXRecordDecl *RD); + /// GenerateRttiNonClass - Generate the rtti information for the given + /// non-class type. + llvm::Constant *GenerateRttiNonClass(QualType Ty); /// BuildThunk - Build a thunk for the given method llvm::Constant *BuildThunk(const CXXMethodDecl *MD, bool Extern, int64_t nv, |