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 {