diff options
author | Anders Carlsson <andersca@mac.com> | 2009-04-01 00:58:25 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-04-01 00:58:25 +0000 |
commit | 237f349073409f698e242cb80412f1feeec223d4 (patch) | |
tree | 451f9324ac8cf2f059ee8f096007451f5e5960c7 /clang/lib/CodeGen/CodeGenModule.h | |
parent | f16f90b4fd1b2169c7b3f62a1017f978192f6476 (diff) | |
download | bcm5719-llvm-237f349073409f698e242cb80412f1feeec223d4.tar.gz bcm5719-llvm-237f349073409f698e242cb80412f1feeec223d4.zip |
Implement code generation of namespaces and add mangling tests.
llvm-svn: 68170
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.h b/clang/lib/CodeGen/CodeGenModule.h index 01b8d02fb8e..4fbacdc25c9 100644 --- a/clang/lib/CodeGen/CodeGenModule.h +++ b/clang/lib/CodeGen/CodeGenModule.h @@ -324,7 +324,8 @@ private: void EmitGlobalVarDefinition(const VarDecl *D); void EmitAliasDefinition(const ValueDecl *D); void EmitObjCPropertyImplementations(const ObjCImplementationDecl *D); - + void EmitNamespace(const NamespaceDecl *D); + // FIXME: Hardcoding priority here is gross. void AddGlobalCtor(llvm::Function * Ctor, int Priority=65535); void AddGlobalDtor(llvm::Function * Dtor, int Priority=65535); |