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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135564 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
NAKAMURA Takumi 2011-07-20 04:02:20 +00:00
parent 03c45f60f3
commit e3345c4e4a

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 {