aboutsummaryrefslogtreecommitdiffstats
path: root/docs/WritingAnLLVMPass.html
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-04-21 04:52:37 +0000
committerChris Lattner <sabre@nondot.org>2005-04-21 04:52:37 +0000
commit4c376eacf5ab7f58454e134f896d5cba4b01d148 (patch)
treeaef8d638c055e13d0ec6b5f79414f4614c499189 /docs/WritingAnLLVMPass.html
parent2aafadcc764ca5e7fa8a9f52bf7b161d0b600361 (diff)
downloadexternal_llvm-4c376eacf5ab7f58454e134f896d5cba4b01d148.zip
external_llvm-4c376eacf5ab7f58454e134f896d5cba4b01d148.tar.gz
external_llvm-4c376eacf5ab7f58454e134f896d5cba4b01d148.tar.bz2
update to match build changes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21386 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/WritingAnLLVMPass.html')
-rw-r--r--docs/WritingAnLLVMPass.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/WritingAnLLVMPass.html b/docs/WritingAnLLVMPass.html
index 239dd67..a13a7db 100644
--- a/docs/WritingAnLLVMPass.html
+++ b/docs/WritingAnLLVMPass.html
@@ -1477,8 +1477,8 @@ want:</p>
<pre>
(gdb) <b>break PassManager::run</b>
Breakpoint 1 at 0x2413bc: file Pass.cpp, line 70.
-(gdb) <b>run test.bc -load $(LLVMTOP)/llvm/lib/Debug/[libname].so -[passoption]</b>
-Starting program: opt test.bc -load $(LLVMTOP)/llvm/lib/Debug/[libname].so -[passoption]
+(gdb) <b>run test.bc -load $(LLVMTOP)/llvm/Debug/lib/[libname].so -[passoption]</b>
+Starting program: opt test.bc -load $(LLVMTOP)/llvm/Debug/lib/[libname].so -[passoption]
Breakpoint 1, PassManager::run (this=0xffbef174, M=@0x70b298) at Pass.cpp:70
70 bool PassManager::run(Module &amp;M) { return PM-&gt;run(M); }
(gdb)