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 | 3f75d552a39c7ecf54d76e3634dc4ca3c72e829e (patch) | |
tree | af901109ec8e9f718d8a146007826caf7ca6d8b8 /clang/lib/CodeGen/CodeGenModule.h | |
parent | 27b18f8144b7cb3ec9ab864f9431ebc44a3c51fc (diff) | |
download | bcm5719-llvm-3f75d552a39c7ecf54d76e3634dc4ca3c72e829e.tar.gz bcm5719-llvm-3f75d552a39c7ecf54d76e3634dc4ca3c72e829e.zip |
Add typeid for the builtin types. WIP.
llvm-svn: 89028
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.h b/clang/lib/CodeGen/CodeGenModule.h index 85e4d3d0739..c8562d6745e 100644 --- a/clang/lib/CodeGen/CodeGenModule.h +++ b/clang/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, |