diff options
author | Douglas Gregor <dgregor@apple.com> | 2011-01-22 02:44:21 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2011-01-22 02:44:21 +0000 |
commit | 9c399a29fd5b57c7a200d1fd014f39684c78a0e1 (patch) | |
tree | 7258302c675fe6a747a10a777e785e59a1b8b4ee /clang/lib/CodeGen/CGExpr.cpp | |
parent | b8c7fe9dc94f7c676601aaf3c6ab994259ac3e30 (diff) | |
download | bcm5719-llvm-9c399a29fd5b57c7a200d1fd014f39684c78a0e1.tar.gz bcm5719-llvm-9c399a29fd5b57c7a200d1fd014f39684c78a0e1.zip |
Send code generation for xvalues down the same path as lvalues
llvm-svn: 124023
Diffstat (limited to 'clang/lib/CodeGen/CGExpr.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGExpr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGExpr.cpp b/clang/lib/CodeGen/CGExpr.cpp index bdc4ef723ab..8e5ee759722 100644 --- a/clang/lib/CodeGen/CGExpr.cpp +++ b/clang/lib/CodeGen/CGExpr.cpp @@ -202,7 +202,7 @@ EmitExprForReferenceBinding(CodeGenFunction &CGF, const Expr *E, } RValue RV; - if (E->isLValue()) { + if (E->isGLValue()) { // Emit the expression as an lvalue. LValue LV = CGF.EmitLValue(E); if (LV.isSimple()) |