Correct OS conditionals following r204977 and r204978.
authorYaron Keren <yaron.keren@gmail.com>
Mon, 31 Mar 2014 07:59:14 +0000 (07:59 +0000)
committerYaron Keren <yaron.keren@gmail.com>
Mon, 31 Mar 2014 07:59:14 +0000 (07:59 +0000)
commit358d68d3833fe7c12e4f475fd14867f6a37ba1c8
treeb8ccedb81d9a5bb9bd7f1a74e030f709b7aeb10a
parent379e2cf307dd2e5e63abe0819db15889c13a4911
Correct OS conditionals following r204977 and r204978.

Previously, MinGW OS was Triple::MinGW and Cygwin was Triple::Cygwin
and now it is Triple::Win32 with Environment being GNU or Cygwin.
So,

  TheTriple.getOS() == Triple::Win32

is replaced by

  TheTriple.isWindowsMSVCEnvironment()

and

  (TheTriple.getOS() == Triple::MinGW32 || TheTriple.getOS() == Triple::Cygwin)

is replaced by

  TheTriple.isOSCygMing()

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@205170 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Target/X86/MCTargetDesc/X86MCTargetDesc.cpp