diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2014-12-17 03:38:04 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2014-12-17 03:38:04 +0000 |
commit | 5f0603098964993677f29ae0a8346e84eb21b225 (patch) | |
tree | 998b687d495d021583fe7cfc9edadd6c7a7381ce /llvm/lib | |
parent | 839353bca0d544a6a7fbc3cb2ba06fd5668a1bb1 (diff) | |
download | bcm5719-llvm-5f0603098964993677f29ae0a8346e84eb21b225.tar.gz bcm5719-llvm-5f0603098964993677f29ae0a8346e84eb21b225.zip |
Remove a debugging assert.
Sorry for the noise, I have no idea how it survived to the final version.
llvm-svn: 224414
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Support/Host.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/Support/Host.cpp b/llvm/lib/Support/Host.cpp index 6b932130fb5..2abbc1440a2 100644 --- a/llvm/lib/Support/Host.cpp +++ b/llvm/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). |