summaryrefslogtreecommitdiffstats
path: root/clang/lib/CodeGen/TargetInfo.cpp
diff options
context:
space:
mode:
authorMartell Malone <martellmalone@gmail.com>2015-11-03 15:57:45 +0000
committerMartell Malone <martellmalone@gmail.com>2015-11-03 15:57:45 +0000
commiteec224eef7ad347e1c078f9890adc21b7dd4db86 (patch)
treead24371a8917bb7d3ef5debdbc4ec85002827043 /clang/lib/CodeGen/TargetInfo.cpp
parent40eb83ba56ba9c1d2e6de44deacf889ac0143cf7 (diff)
downloadbcm5719-llvm-eec224eef7ad347e1c078f9890adc21b7dd4db86.tar.gz
bcm5719-llvm-eec224eef7ad347e1c078f9890adc21b7dd4db86.zip
Remove some legacy mingw-w64 gcc struct info
As of gcc 4.7 mingw-w64 no longer emits 128-bit structs as i128 Differential Revision: http://reviews.llvm.org/D14179 llvm-svn: 251930
Diffstat (limited to 'clang/lib/CodeGen/TargetInfo.cpp')
-rw-r--r--clang/lib/CodeGen/TargetInfo.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/clang/lib/CodeGen/TargetInfo.cpp b/clang/lib/CodeGen/TargetInfo.cpp
index 0131f9dbb1a..06a2e71f5c0 100644
--- a/clang/lib/CodeGen/TargetInfo.cpp
+++ b/clang/lib/CodeGen/TargetInfo.cpp
@@ -3333,10 +3333,6 @@ ABIArgInfo WinX86_64ABIInfo::classify(QualType Ty, unsigned &FreeSSERegs,
if (RT->getDecl()->hasFlexibleArrayMember())
return getNaturalAlignIndirect(Ty, /*ByVal=*/false);
- // FIXME: mingw-w64-gcc emits 128-bit struct as i128
- if (Width == 128 && IsMingw64)
- return ABIArgInfo::getDirect(
- llvm::IntegerType::get(getVMContext(), Width));
}
// vectorcall adds the concept of a homogenous vector aggregate, similar to
OpenPOWER on IntegriCloud