Finish r144971, which was an incomplete commit.

llvm-svn: 144972
This commit is contained in:
Eli Friedman 2011-11-18 04:01:36 +00:00
parent 0b3f201b61
commit f22fa9eaef
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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) {}