git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@62439 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Nate Begeman 2009-01-18 01:08:03 +00:00
Родитель 3d309f9d62
Коммит ca0134259b
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -43,7 +43,8 @@ static void getSolarisDefines(std::vector<char> &Defs) {
Define(Defs, "__SOLARIS__");
}
static void getFreeBSDDefines(std::vector<char> &Defs, bool is64Bit, const char *Triple) {
static void getFreeBSDDefines(std::vector<char> &Defs, bool is64Bit,
const char *Triple) {
// FreeBSD defines; list based off of gcc output
const char *FreeBSD = strstr(Triple, "-freebsd");