From 17a4c3ecfb938da7cb30327b163c005b8b225f08 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 14 Aug 2002 20:06:13 +0000 Subject: [PATCH] Fix bug in documentation git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3334 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/WritingAnLLVMPass.html | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/docs/WritingAnLLVMPass.html b/docs/WritingAnLLVMPass.html index f9e82989537..7db23f393aa 100644 --- a/docs/WritingAnLLVMPass.html +++ b/docs/WritingAnLLVMPass.html @@ -144,15 +144,24 @@ First thing you need to do is create a new directory somewhere in the LLVM source base. For this example, we'll assume that you made "lib/Transforms/Hello". The first thing you must do is set up a build script (Makefile) that will compile the source code for the new pass. To do -this, copy this into "Makefile":

+this, copy this into "Makefile" (be very careful that there are no +extra space characters at the end of the lines though... that seems to confuse +gmake):