diff options
author | Chris Lattner <sabre@nondot.org> | 2007-08-03 16:18:34 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-08-03 16:18:34 +0000 |
commit | 34cdc86af5b0a54084a512a1b2643365b8f5bdd2 (patch) | |
tree | 403adf8bf8cec493d4182e042a7eefd9d931a7de /CodeGen/CodeGenFunction.h | |
parent | 5cc2e45e2df0a4fa6a7134f31a38176ce9bf7e58 (diff) |
refactor handling of ocuvector lvalue->rvalue codegen into its own method.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@40780 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'CodeGen/CodeGenFunction.h')
-rw-r--r-- | CodeGen/CodeGenFunction.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CodeGen/CodeGenFunction.h b/CodeGen/CodeGenFunction.h index 919e68c91d..2ac8e8035a 100644 --- a/CodeGen/CodeGenFunction.h +++ b/CodeGen/CodeGenFunction.h @@ -316,7 +316,9 @@ public: /// rvalue, returning the rvalue. RValue EmitLoadOfLValue(const Expr *E); RValue EmitLoadOfLValue(LValue V, QualType LVType); + RValue EmitLoadOfOCUComponentLValue(LValue V, QualType LVType); + /// EmitStoreThroughLValue - Store the specified rvalue into the specified /// lvalue, where both are guaranteed to the have the same type, and that type /// is 'Ty'. |