diff options
author | Anders Carlsson <andersca@mac.com> | 2009-02-24 04:21:31 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-02-24 04:21:31 +0000 |
commit | 8a219ceda2b5afd447e7199b9c53079bead31b89 (patch) | |
tree | ae96e34a7f260a70c4f4c8be1f14fc86b3f8ad2a /lib/CodeGen/CodeGenModule.h | |
parent | 911e0af45196b15e9dd8557ca9ebf00fb01c4fdc (diff) |
Prevent accidental copying of CodeGenFunction and CodeGenModule.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65372 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 3f1aeb80be..913e4bc4b1 100644 --- a/lib/CodeGen/CodeGenModule.h +++ b/lib/CodeGen/CodeGenModule.h @@ -62,6 +62,9 @@ namespace CodeGen { /// CodeGenModule - This class organizes the cross-function state that is used /// while generating LLVM code. class CodeGenModule { + CodeGenModule(const CodeGenModule&); // DO NOT IMPLEMENT + void operator=(const CodeGenModule&); // DO NOT IMPLEMENT + typedef std::vector< std::pair<llvm::Constant*, int> > CtorList; ASTContext &Context; |