1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 13:11:39 +01:00

Fix the clang -Werror build, use of uninitialized variable.

llvm-svn: 236512
This commit is contained in:
David Blaikie 2015-05-05 18:12:33 +00:00
parent af1954cd08
commit 2520d6743e

View File

@ -74,7 +74,7 @@ private:
LogicalModule(LogicalModule &&Other)
: SrcM(std::move(Other.SrcM)),
GVsAndStubsHandle(std::move(Other.GVsAndStubsHandle)),
ImplHandles(std::move(ImplHandles)) {}
ImplHandles(std::move(Other.ImplHandles)) {}
std::unique_ptr<Module> SrcM;
BaseLayerModuleSetHandleT GVsAndStubsHandle;