diff options
| author | Anders Carlsson <andersca@mac.com> | 2010-05-21 22:17:48 +0000 |
|---|---|---|
| committer | Anders Carlsson <andersca@mac.com> | 2010-05-21 22:17:48 +0000 |
| commit | c866eb5ba9157ff54592373bd3b0b21b289a3eb6 (patch) | |
| tree | d396d600f7c126d3bcdb5954123591082c41e64a /clang/lib/CodeGen/CGExpr.cpp | |
| parent | a2448b85be227ea1b67aa29463de239d4c166ecf (diff) | |
| download | bcm5719-llvm-c866eb5ba9157ff54592373bd3b0b21b289a3eb6.tar.gz bcm5719-llvm-c866eb5ba9157ff54592373bd3b0b21b289a3eb6.zip | |
Unbreak self-host.
llvm-svn: 104390
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 a4a4bda723d..74e64e59a5a 100644 --- a/clang/lib/CodeGen/CGExpr.cpp +++ b/clang/lib/CodeGen/CGExpr.cpp @@ -1844,7 +1844,7 @@ LValue CodeGenFunction::EmitNullInitializationLValue( const CXXZeroInitValueExpr *E) { QualType Ty = E->getType(); LValue LV = LValue::MakeAddr(CreateMemTemp(Ty), MakeQualifiers(Ty)); - EmitNullInitialization(LV.getAddress(), Ty); + EmitMemSetToZero(LV.getAddress(), Ty); return LV; } |

