[llvm-commits] CVS: llvm/docs/WritingAnLLVMPass.html

Chris Lattner lattner at cs.uiuc.edu
Thu Oct 23 14:49:02 PDT 2003


Changes in directory llvm/docs:

WritingAnLLVMPass.html updated: 1.19 -> 1.20

---
Log message:

Remove explicit paths


---
Diffs of the changes:  (+2 -3)

Index: llvm/docs/WritingAnLLVMPass.html
diff -u llvm/docs/WritingAnLLVMPass.html:1.19 llvm/docs/WritingAnLLVMPass.html:1.20
--- llvm/docs/WritingAnLLVMPass.html:1.19	Wed Sep 10 00:29:43 2003
+++ llvm/docs/WritingAnLLVMPass.html	Thu Oct 23 14:48:11 2003
@@ -1159,9 +1159,8 @@
 <pre>
 (gdb) <b>break PassManager::run</b>
 Breakpoint 1 at 0x2413bc: file Pass.cpp, line 70.
-(gdb) <b>run test.bc -load /shared/lattner/cvs/llvm/lib/Debug/[libname].so -[passoption]</b>
-Starting program: /shared/lattner/cvs/llvm/tools/Debug/opt test.bc 
-    -load /shared/lattner/cvs/llvm/lib/Debug/[libname].so -[passoption]
+(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]
 Breakpoint 1, PassManager::run (this=0xffbef174, M=@0x70b298) at Pass.cpp:70
 70      bool PassManager::run(Module &M) { return PM->run(M); }
 (gdb)





More information about the llvm-commits mailing list