From f22fa9eaef8b1f09b28be6aa52b7814bd4a273ad Mon Sep 17 00:00:00 2001 From: Eli Friedman Date: Fri, 18 Nov 2011 04:01:36 +0000 Subject: [PATCH] Finish r144971, which was an incomplete commit. llvm-svn: 144972 --- clang/lib/CodeGen/TargetInfo.cpp | 2 +- clang/test/CodeGen/x86_32-arguments-darwin.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/clang/lib/CodeGen/TargetInfo.cpp b/clang/lib/CodeGen/TargetInfo.cpp index a2e15107f50c..73bb9902cb11 100644 --- a/clang/lib/CodeGen/TargetInfo.cpp +++ b/clang/lib/CodeGen/TargetInfo.cpp @@ -688,7 +688,7 @@ ABIArgInfo X86_32ABIInfo::classifyArgumentType(QualType Ty) const { } // Ignore empty structs/unions. - if (isEmptyRecord(Context, Ty, true)) + if (isEmptyRecord(getContext(), Ty, true)) return ABIArgInfo::getIgnore(); // Expand small (<= 128-bit) record types when we know that the stack layout diff --git a/clang/test/CodeGen/x86_32-arguments-darwin.c b/clang/test/CodeGen/x86_32-arguments-darwin.c index cc10580f8f42..0ac18b792f9f 100644 --- a/clang/test/CodeGen/x86_32-arguments-darwin.c +++ b/clang/test/CodeGen/x86_32-arguments-darwin.c @@ -317,7 +317,7 @@ int f63(int i, ...) { return s.y; } -// CHECK: define i32 @f64(%struct.s64* nocapture byval align 4 %x) +// CHECK: define void @f64(%struct.s64* byval align 4 %x) struct s64 { signed char a[0]; signed char b[]; }; void f64(struct s64 x) {}