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:
parent
af1954cd08
commit
2520d6743e
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user