From: Filip Pizlo Date: Sun, 3 Nov 2013 04:38:31 +0000 (+0000) Subject: Add a comment to note that LLVMDisablePrettyStackTrace() is likely not a good long... X-Git-Tag: android-x86-6.0-r1~129^2~719 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=153d6191c9c5e15aa22bf2eae14463fd43454609;p=android-x86%2Fexternal-llvm.git Add a comment to note that LLVMDisablePrettyStackTrace() is likely not a good long-term solution. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193939 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm-c/Core.h b/include/llvm-c/Core.h index 47d566c03e2..88204ef33ce 100644 --- a/include/llvm-c/Core.h +++ b/include/llvm-c/Core.h @@ -436,6 +436,9 @@ void LLVMResetFatalErrorHandler(void); /** * Disable LLVM's built-in stack trace code. This must be called before any * other LLVM APIs; otherwise the results are undefined. + * + * FIXME: This API should be replaced by a LLVMEnablePrettyStackTrace() + * function; the default should be that pretty stack traces are disabled. */ void LLVMDisablePrettyStackTrace(void);