diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2011-11-18 04:01:36 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2011-11-18 04:01:36 +0000 |
commit | 5a1ac89b244940a0337ea7ae7dc371e2a9bf7c50 (patch) | |
tree | f8b6a49812139932cfa4d9160e2507de90b80889 /lib/CodeGen/TargetInfo.cpp | |
parent | 7e7ad3f8fa150de6144be332ae4bfe5d1acb5c6d (diff) |
Finish r144971, which was an incomplete commit.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@144972 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/TargetInfo.cpp')
-rw-r--r-- | lib/CodeGen/TargetInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/TargetInfo.cpp b/lib/CodeGen/TargetInfo.cpp index a2e15107f5..73bb9902cb 100644 --- a/lib/CodeGen/TargetInfo.cpp +++ b/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 |