diff options
author | Chris Lattner <sabre@nondot.org> | 2010-08-30 22:03:23 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-08-30 22:03:23 +0000 |
commit | 4599f346cb90bef15e1afd5c66f20c18703e41ae (patch) | |
tree | bf61bec6786d29c1be9583c399f60e2c26886193 /lib/CodeGen/TargetInfo.cpp | |
parent | d304fe66c032b6c73028cb45758614904e3c1735 (diff) |
Fix PR8029, a x86-32 ABI regression in introduced in r112211
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@112537 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/TargetInfo.cpp')
-rw-r--r-- | lib/CodeGen/TargetInfo.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/CodeGen/TargetInfo.cpp b/lib/CodeGen/TargetInfo.cpp index d2bd33258c..bf261200bc 100644 --- a/lib/CodeGen/TargetInfo.cpp +++ b/lib/CodeGen/TargetInfo.cpp @@ -598,7 +598,6 @@ ABIArgInfo X86_32ABIInfo::classifyArgumentType(QualType Ty) const { (Size == 64 && VT->getNumElements() == 1)) return ABIArgInfo::getDirect(llvm::IntegerType::get(getVMContext(), Size)); - return ABIArgInfo::getIndirect(0); } return ABIArgInfo::getDirect(); |