[cfe-commits] r129162 - /cfe/trunk/docs/UsersManual.html

Evan Cheng evan.cheng at apple.com
Fri Apr 8 15:18:01 PDT 2011


Author: evancheng
Date: Fri Apr  8 17:18:01 2011
New Revision: 129162

URL: http://llvm.org/viewvc/llvm-project?rev=129162&view=rev
Log:
Document -ftrap-function= option

Modified:
    cfe/trunk/docs/UsersManual.html

Modified: cfe/trunk/docs/UsersManual.html
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/UsersManual.html?rev=129162&r1=129161&r2=129162&view=diff
==============================================================================
--- cfe/trunk/docs/UsersManual.html (original)
+++ cfe/trunk/docs/UsersManual.html Fri Apr  8 17:18:01 2011
@@ -767,6 +767,18 @@
 <dd>This option tells the compiler to do not assume that C++'s global new
 operator will always return a pointer that does not
 alias any other pointer when the function returns.</dd>
+
+<dt id="opt_ftrap-function=<name>"><b>-ftrap-function=<name></b>: Instruct code
+generator to emit a function call to the specified function name for
+<tt>__builtin_trap()</tt>.</dt>
+
+<dd>LLVM code generator translates <tt>__builtin_trap()</tt> to a trap
+instruction if it is supported by the target ISA. Otherwise, the builtin is
+translated into a call to <tt>abort</tt>. If this option is set, then the code
+generator will always lower the builtin to a call to the specified function
+regardless of whether the target ISA has a trap instruction. This option is
+useful for environements (e.g. deeply embedded) where a trap cannot be properly
+handled.
 </dl>
 
 <!-- ======================================================================= -->





More information about the cfe-commits mailing list