aboutsummaryrefslogtreecommitdiff
path: root/CodeGen/CodeGenFunction.h
diff options
context:
space:
mode:
authorLauro Ramos Venancio <lauro.venancio@gmail.com>2008-01-22 22:36:45 +0000
committerLauro Ramos Venancio <lauro.venancio@gmail.com>2008-01-22 22:36:45 +0000
commita0c5d0eacede0f67ce46707263ddf4d8de0df706 (patch)
tree73977c54e09d8b07ec47b89a59f7ec9f05cf8bac /CodeGen/CodeGenFunction.h
parent3b8c22d93da1432b2d4cea779d14912645c93866 (diff)
Implement bitfield write.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@46258 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'CodeGen/CodeGenFunction.h')
-rw-r--r--CodeGen/CodeGenFunction.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/CodeGen/CodeGenFunction.h b/CodeGen/CodeGenFunction.h
index d56e438df8..dd91a53326 100644
--- a/CodeGen/CodeGenFunction.h
+++ b/CodeGen/CodeGenFunction.h
@@ -401,6 +401,7 @@ public:
/// is 'Ty'.
void EmitStoreThroughLValue(RValue Src, LValue Dst, QualType Ty);
void EmitStoreThroughOCUComponentLValue(RValue Src, LValue Dst, QualType Ty);
+ void EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst, QualType Ty);
// Note: only availabe for agg return types
LValue EmitCallExprLValue(const CallExpr *E);