1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

X86Subtarget.h: Assume "x86_64-cygwin", though it has not been released yet, to appease test/CodeGen/X86 on cygwin.

llvm-svn: 135564
This commit is contained in:
NAKAMURA Takumi 2011-07-20 04:02:20 +00:00
parent 7510091996
commit 19d48c106d

View File

@ -199,7 +199,8 @@ public:
}
bool isTargetWin64() const {
return In64BitMode && (isTargetMingw() || isTargetWindows());
// FIXME: x86_64-cygwin has not been released yet.
return In64BitMode && (isTargetCygMing() || isTargetWindows());
}
bool isTargetEnvMacho() const {