diff options
| author | Rafael Espindola <rafael.espindola@gmail.com> | 2010-03-27 02:52:14 +0000 |
|---|---|---|
| committer | Rafael Espindola <rafael.espindola@gmail.com> | 2010-03-27 02:52:14 +0000 |
| commit | adcc1d18e28f54526c0cd9d904a6fff2db7febcc (patch) | |
| tree | e52a96ebbc9c3582e07c35515abf9ee613dc58e7 /clang/lib/CodeGen/CodeGenModule.h | |
| parent | 07943af506491ea77cd85a6983f3c8596d1756c2 (diff) | |
| download | bcm5719-llvm-adcc1d18e28f54526c0cd9d904a6fff2db7febcc.tar.gz bcm5719-llvm-adcc1d18e28f54526c0cd9d904a6fff2db7febcc.zip | |
When given the magic class __cxxabiv1::__fundamental_type_info, produce
the typeinfo for the fundamental types.
Fixes PR6685.
llvm-svn: 99701
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.h')
| -rw-r--r-- | clang/lib/CodeGen/CodeGenModule.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.h b/clang/lib/CodeGen/CodeGenModule.h index 5946a6fd945..e4b0054650f 100644 --- a/clang/lib/CodeGen/CodeGenModule.h +++ b/clang/lib/CodeGen/CodeGenModule.h @@ -515,6 +515,14 @@ private: void EmitAnnotations(void); + /// EmitFundamentalRTTIDescriptor - Emit the RTTI descriptors for the + /// given type. + void EmitFundamentalRTTIDescriptor(QualType Type); + + /// EmitFundamentalRTTIDescriptors - Emit the RTTI descriptors for the + /// builtin types. + void EmitFundamentalRTTIDescriptors(); + /// EmitDeferred - Emit any needed decls for which code generation /// was deferred. void EmitDeferred(void); |

