[llvm] r309445 - Add documentation for the attribute "no-jump-tables"

Sumanth Gundapaneni via llvm-commits llvm-commits at lists.llvm.org
Fri Jul 28 15:26:22 PDT 2017


Author: sgundapa
Date: Fri Jul 28 15:26:22 2017
New Revision: 309445

URL: http://llvm.org/viewvc/llvm-project?rev=309445&view=rev
Log:
Add documentation for the attribute "no-jump-tables"

Modified:
    llvm/trunk/docs/LangRef.rst

Modified: llvm/trunk/docs/LangRef.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/LangRef.rst?rev=309445&r1=309444&r2=309445&view=diff
==============================================================================
--- llvm/trunk/docs/LangRef.rst (original)
+++ llvm/trunk/docs/LangRef.rst Fri Jul 28 15:26:22 2017
@@ -1381,6 +1381,9 @@ example:
 ``naked``
     This attribute disables prologue / epilogue emission for the
     function. This can have very system-specific consequences.
+``no-jump-tables``
+    When this attribute is set to true, the jump tables and lookup tables that
+    can be generated from a switch case lowering are disabled.
 ``nobuiltin``
     This indicates that the callee function at a call site is not recognized as
     a built-in function. LLVM will retain the original call and not replace it




More information about the llvm-commits mailing list