From: Eric Christopher Date: Wed, 27 Apr 2011 05:48:06 +0000 (+0000) Subject: Remove this assert, I don't think it's being helpful and people have X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4d53be4a470fc546b4c1e7618a11cf8bc7c00675;p=clang Remove this assert, I don't think it's being helpful and people have been running into it. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@130296 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Basic/Targets.cpp b/lib/Basic/Targets.cpp index d06ff48be4..97109caf12 100644 --- a/lib/Basic/Targets.cpp +++ b/lib/Basic/Targets.cpp @@ -121,7 +121,6 @@ static void getDarwinDefines(MacroBuilder &Builder, const LangOptions &Opts, if (Triple.getEnvironmentName() == "iphoneos") { PlatformName = "ios"; } else { - assert(Rev == 0 && "invalid triple, unexpected micro version!"); PlatformName = "macosx"; Rev = Min; Min = Maj - 4;