aboutsummaryrefslogtreecommitdiff
path: root/CodeGen/CodeGenFunction.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-08-03 16:18:34 +0000
committerChris Lattner <sabre@nondot.org>2007-08-03 16:18:34 +0000
commit34cdc86af5b0a54084a512a1b2643365b8f5bdd2 (patch)
tree403adf8bf8cec493d4182e042a7eefd9d931a7de /CodeGen/CodeGenFunction.h
parent5cc2e45e2df0a4fa6a7134f31a38176ce9bf7e58 (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.h2
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'.