From: Daniel Dunbar Date: Sun, 26 Jul 2009 21:16:42 +0000 (+0000) Subject: Don't use llvm_report_error in libSystem, this is a layering violation. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=2749b3e745240832c3c9ddf5b6cf8a589497238b;p=oota-llvm.git Don't use llvm_report_error in libSystem, this is a layering violation. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77169 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/System/Win32/Path.inc b/lib/System/Win32/Path.inc index 7d7137c2cd5..80c7bd9eabe 100644 --- a/lib/System/Win32/Path.inc +++ b/lib/System/Win32/Path.inc @@ -135,10 +135,10 @@ void Path::makeAbsolute() { if (0 == RetLength) { // FIXME: Report the error GetLastError() - llvm_report_error("Unable to make absolute path!"); + assert(0 && "Unable to make absolute path!"); } else if (RetLength > MAX_PATH) { // FIXME: Report too small buffer (needed RetLength bytes). - llvm_report_error("Unable to make absolute path!"); + assert(0 && "Unable to make absolute path!"); } else { path = FullPath; }