If LLVM was configured with an x86_64-apple-macosx host triple, this
test would fail, as the API works but the triple isn't in the whitelist.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@293990
91177308-0d34-0410-b5e6-
96231b3b80d8
// x86_64 Linux and Darwin.
SupportedArchAndOSs.push_back(std::make_pair(Triple::x86_64, Triple::Linux));
SupportedArchAndOSs.push_back(std::make_pair(Triple::x86_64, Triple::Darwin));
+ SupportedArchAndOSs.push_back(std::make_pair(Triple::x86_64, Triple::MacOSX));
}
};