diff options
Diffstat (limited to 'lib/CodeGen/CGCall.cpp')
-rw-r--r-- | lib/CodeGen/CGCall.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/CGCall.cpp b/lib/CodeGen/CGCall.cpp index b0a2f586ea..b7459b2229 100644 --- a/lib/CodeGen/CGCall.cpp +++ b/lib/CodeGen/CGCall.cpp @@ -323,10 +323,10 @@ ABIArgInfo X86_32ABIInfo::classifyArgumentType(QualType Ty, if (RT->getDecl()->hasFlexibleArrayMember()) return ABIArgInfo::getByVal(0); - // Expand empty structs (i.e. ignore) + // Ignore empty structs. uint64_t Size = Context.getTypeSize(Ty); if (Ty->isStructureType() && Size == 0) - return ABIArgInfo::getExpand(); + return ABIArgInfo::getIgnore(); // Expand structs with size <= 128-bits which consist only of // basic types (int, long long, float, double, xxx*). This is |