From 650708838de9cade80dc2ef3ae8e4dfe28cbf932 Mon Sep 17 00:00:00 2001
From: Rafael Espindola <rafael.espindola@gmail.com>
Date: Wed, 17 Dec 2014 03:38:04 +0000
Subject: [PATCH] Remove a debugging assert.

Sorry for the noise, I have no idea how it survived to the final version.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224414 91177308-0d34-0410-b5e6-96231b3b80d8
---
 lib/Support/Host.cpp | 1 -
 1 file changed, 1 deletion(-)

diff --git a/lib/Support/Host.cpp b/lib/Support/Host.cpp
index 6b932130fb5..2abbc1440a2 100644
--- a/lib/Support/Host.cpp
+++ b/lib/Support/Host.cpp
@@ -51,7 +51,6 @@ using namespace llvm;
 
 #if defined(__linux__)
 static ssize_t LLVM_ATTRIBUTE_UNUSED readCpuInfo(void *Buf, size_t Size) {
-  assert(0);
   // Note: We cannot mmap /proc/cpuinfo here and then process the resulting
   // memory buffer because the 'file' has 0 size (it can be read from only
   // as a stream).