diff options
author | Chris Lattner <sabre@nondot.org> | 2005-04-21 04:52:37 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-04-21 04:52:37 +0000 |
commit | 4c376eacf5ab7f58454e134f896d5cba4b01d148 (patch) | |
tree | aef8d638c055e13d0ec6b5f79414f4614c499189 /docs/WritingAnLLVMPass.html | |
parent | 2aafadcc764ca5e7fa8a9f52bf7b161d0b600361 (diff) | |
download | external_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.html | 4 |
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 &M) { return PM->run(M); } (gdb) |