diff options
author | Lauro Ramos Venancio <lauro.venancio@gmail.com> | 2008-01-22 22:36:45 +0000 |
---|---|---|
committer | Lauro Ramos Venancio <lauro.venancio@gmail.com> | 2008-01-22 22:36:45 +0000 |
commit | 09af71c2a606d1f67057f201bec0743df8bc834b (patch) | |
tree | cc2e841a6a0363ca0eec265ce9ad890fb5fb7cc4 /clang/CodeGen/CodeGenFunction.h | |
parent | 2ddcb25a3bb411165ddeb8c9c345ef7617e27211 (diff) | |
download | bcm5719-llvm-09af71c2a606d1f67057f201bec0743df8bc834b.tar.gz bcm5719-llvm-09af71c2a606d1f67057f201bec0743df8bc834b.zip |
Implement bitfield write.
llvm-svn: 46258
Diffstat (limited to 'clang/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/CodeGen/CodeGenFunction.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/CodeGen/CodeGenFunction.h b/clang/CodeGen/CodeGenFunction.h index d56e438df82..dd91a533260 100644 --- a/clang/CodeGen/CodeGenFunction.h +++ b/clang/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); |