@@ -113,14 +113,13 @@ julia> Meta.lower(@__MODULE__, :(f() = 1) )
113113
114114Inspecting the lowered form for functions requires selection of the specific method to display,
115115because generic functions may have many methods with different type signatures. For this purpose,
116- method-specific code-lowering is available using [ ` code_lowered(f::Function, (Argtypes...)) ` ] ( @ref ) ,
117- and the type-inferred form is available using [ ` code_typed(f::Function, (Argtypes...)) ` ] ( @ref ) .
118- [ ` code_warntype(f::Function, (Argtypes...)) ` ] ( @ref ) adds highlighting to the output of [ ` code_typed ` ] ( @ref )
119- (see [ ` @code_warntype ` ] ( @ref ) ).
116+ method-specific code-lowering is available using [ ` code_lowered ` ] ( @ref ) ,
117+ and the type-inferred form is available using [ ` code_typed ` ] ( @ref ) .
118+ [ ` code_warntype ` ] ( @ref ) adds highlighting to the output of [ ` code_typed ` ] ( @ref ) .
120119
121120Closer to the machine, the LLVM intermediate representation of a function may be printed using
122- by [ ` code_llvm(f::Function, (Argtypes...)) ` ] ( @ref ) , and finally the compiled machine code is available
123- using [ ` code_native(f::Function, (Argtypes...)) ` ] ( @ref ) (this will trigger JIT compilation/code
121+ by [ ` code_llvm ` ] ( @ref ) , and finally the compiled machine code is available
122+ using [ ` code_native ` ] ( @ref ) (this will trigger JIT compilation/code
124123generation for any function which has not previously been called).
125124
126125For convenience, there are macro versions of the above functions which take standard function
137136}
138137```
139138
140- (likewise ` @code_typed ` , ` @code_warntype ` , ` @code_lowered ` , and ` @code_native ` )
139+ See [ ` @code_lowered ` ] ( @ref ) , [ ` @code_typed ` ] ( @ref ) , [ ` @code_warntype ` ] ( @ref ) ,
140+ [ ` @code_llvm ` ] ( @ref ) , and [ ` @code_native ` ] ( @ref ) .
0 commit comments