diff options
-rw-r--r-- | lib/Driver/HostInfo.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Driver/HostInfo.cpp b/lib/Driver/HostInfo.cpp index a9713cea47..603b3ab230 100644 --- a/lib/Driver/HostInfo.cpp +++ b/lib/Driver/HostInfo.cpp @@ -74,7 +74,8 @@ DarwinHostInfo::DarwinHostInfo(const Driver &D, const llvm::Triple& Triple) : HostInfo(D, Triple) { assert((getArchName() == "i386" || getArchName() == "x86_64" || - getArchName() == "powerpc" || getArchName() == "powerpc64") && + getArchName() == "powerpc" || getArchName() == "powerpc64" || + getArchName() == "arm") && "Unknown Darwin arch."); assert(memcmp(&getOSName()[0], "darwin", 6) == 0 && |