diff options
author | Eric Christopher <echristo@apple.com> | 2011-04-27 05:48:06 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-04-27 05:48:06 +0000 |
commit | 4d53be4a470fc546b4c1e7618a11cf8bc7c00675 (patch) | |
tree | 0fa84fb2d93662a7d4565f7c6d8dfe43ae0c2765 /lib/Basic/Targets.cpp | |
parent | d0719b183ae331e0e8731c486f21392e0eb288c3 (diff) |
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
Diffstat (limited to 'lib/Basic/Targets.cpp')
-rw-r--r-- | lib/Basic/Targets.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
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; |