diff options
author | Mike Stump <mrs@apple.com> | 2009-03-04 18:17:45 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-03-04 18:17:45 +0000 |
commit | 2a998148a6823c44d67da347c95eb2ea21f6b986 (patch) | |
tree | 6a036ff0583af276897f3b330402915079cba767 /lib/CodeGen/CodeGenFunction.h | |
parent | 175ba1e8180083927aabd7cc8137baa16be75646 (diff) |
Move more of blocks codegen out of CodeGenModule and into the
BlockModule. No functionality change. This should help people that
don't want to know anything about blocks not be confused by the
overloaded use of the term block or nor want to see all the blocks
goop.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@66042 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index b724b72a39..caf50d35b2 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -62,7 +62,7 @@ namespace CodeGen { /// CodeGenFunction - This class organizes the per-function state that is used /// while generating LLVM code. - class CodeGenFunction : public BlockFunction { +class CodeGenFunction : public BlockFunction { CodeGenFunction(const CodeGenFunction&); // DO NOT IMPLEMENT void operator=(const CodeGenFunction&); // DO NOT IMPLEMENT public: |