[cfe-commits] r95953 - /cfe/trunk/lib/CodeGen/CGDebugInfo.cpp
Devang Patel
dpatel at apple.com
Thu Feb 11 17:31:07 PST 2010
Author: dpatel
Date: Thu Feb 11 19:31:06 2010
New Revision: 95953
URL: http://llvm.org/viewvc/llvm-project?rev=95953&view=rev
Log:
Do not ignore anonymous records.
Modified:
cfe/trunk/lib/CodeGen/CGDebugInfo.cpp
Modified: cfe/trunk/lib/CodeGen/CGDebugInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGDebugInfo.cpp?rev=95953&r1=95952&r2=95953&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CGDebugInfo.cpp (original)
+++ cfe/trunk/lib/CodeGen/CGDebugInfo.cpp Thu Feb 11 19:31:06 2010
@@ -484,8 +484,8 @@
llvm::StringRef FieldName = Field->getName();
- // Ignore unnamed fields.
- if (FieldName.empty())
+ // Ignore unnamed fields. Do not ignore unnamed records.
+ if (FieldName.empty() && !isa<RecordType>(Field->getType()))
continue;
// Get the location for the field.
More information about the cfe-commits
mailing list