diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2014-08-19 17:17:40 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2014-08-19 17:17:40 +0000 |
commit | 91b2fa2a9a2ae436a84216af81bc62699a2bcfa4 (patch) | |
tree | e7f3cad8a0de569fdb93ab1d23f3548a2eb182cc /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 6a128331a6f63c880b5edd15a802c739f7596d99 (diff) | |
download | bcm5719-llvm-91b2fa2a9a2ae436a84216af81bc62699a2bcfa4.tar.gz bcm5719-llvm-91b2fa2a9a2ae436a84216af81bc62699a2bcfa4.zip |
ext_vector IRGen. Patch to allow indexing into
ext_vector_type's 'hi/lo' components when
used as lvalue. rdar://18031917 pr20697
llvm-svn: 215991
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 61d98ab28e9..88eedd5dd3a 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -2096,6 +2096,8 @@ public: LValue EmitCastLValue(const CastExpr *E); LValue EmitMaterializeTemporaryExpr(const MaterializeTemporaryExpr *E); LValue EmitOpaqueValueLValue(const OpaqueValueExpr *e); + + llvm::Value *EmitExtVectorElementLValue(LValue V); RValue EmitRValueForField(LValue LV, const FieldDecl *FD, SourceLocation Loc); |