From c8a536e4b4a8ba10e41dd710477b5b8b8375caf8 Mon Sep 17 00:00:00 2001 From: "Steven G. Johnson" Date: Sun, 11 Aug 2013 16:48:20 -0400 Subject: [PATCH] replace deprecated call to disassemble with code_llvm in FAQ --- doc/manual/faq.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/manual/faq.rst b/doc/manual/faq.rst index d80d2a321200d..f258a852094ea 100644 --- a/doc/manual/faq.rst +++ b/doc/manual/faq.rst @@ -174,9 +174,9 @@ a simple function using :: - disassemble(func,(MyType{Float64},)) - disassemble(func,(MyType{FloatingPoint},)) - disassemble(func,(MyType,)) + code_llvm(func,(MyType{Float64},)) + code_llvm(func,(MyType{FloatingPoint},)) + code_llvm(func,(MyType,)) For reasons of length the results are not shown here, but you may wish to try this yourself. Because the type is fully-specified in the first