X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=blobdiff_plain;f=docs%2FExtendingLLVM.rst;h=87f48c9934257d2aaa499dfe762ca3f550f6292b;hp=3fd54c8360e551931cb68df55c87373f9f070110;hb=8f3f5c300ec8f29c62d966e5865fd95965f94878;hpb=226889eb73e83dea20c050047bcff71e1552a90f diff --git a/docs/ExtendingLLVM.rst b/docs/ExtendingLLVM.rst index 3fd54c8360e..87f48c99342 100644 --- a/docs/ExtendingLLVM.rst +++ b/docs/ExtendingLLVM.rst @@ -49,9 +49,9 @@ function and then be turned into an instruction if warranted. Add an entry for your intrinsic. Describe its memory access characteristics for optimization (this controls whether it will be DCE'd, CSE'd, etc). Note - that any intrinsic using the ``llvm_int_ty`` type for an argument will - be deemed by ``tblgen`` as overloaded and the corresponding suffix will - be required on the intrinsic's name. + that any intrinsic using one of the ``llvm_any*_ty`` types for an argument or + return type will be deemed by ``tblgen`` as overloaded and the corresponding + suffix will be required on the intrinsic's name. #. ``llvm/lib/Analysis/ConstantFolding.cpp``: