1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-25 05:52:53 +02:00

Remove redundant explicit default initialization.

llvm-svn: 194980
This commit is contained in:
David Blaikie 2013-11-17 21:57:33 +00:00
parent 0b4f1b5a16
commit 4f99401301

View File

@ -602,8 +602,8 @@ void CompileUnit::addBlockByrefAddress(const DbgVariable &DV, DIE *Die,
// Find the __forwarding field and the variable field in the __Block_byref // Find the __forwarding field and the variable field in the __Block_byref
// struct. // struct.
DIArray Fields = blockStruct.getTypeArray(); DIArray Fields = blockStruct.getTypeArray();
DIDescriptor varField = DIDescriptor(); DIDescriptor varField;
DIDescriptor forwardingField = DIDescriptor(); DIDescriptor forwardingField;
for (unsigned i = 0, N = Fields.getNumElements(); i < N; ++i) { for (unsigned i = 0, N = Fields.getNumElements(); i < N; ++i) {
DIDescriptor Element = Fields.getElement(i); DIDescriptor Element = Fields.getElement(i);