From ddaf500c26489169046eb130bf282d8f583c23ec Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 23 May 2003 14:49:32 +0000 Subject: [PATCH] Fix a problem brian identified. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6309 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/HowToSubmitABug.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/HowToSubmitABug.html b/docs/HowToSubmitABug.html index e3f20197c15..387e1a5523e 100644 --- a/docs/HowToSubmitABug.html +++ b/docs/HowToSubmitABug.html @@ -135,7 +135,8 @@ being linked together (the "llvm-gcc -v" output should include the full list of objects linked). Then run:

-  gccld -debug-pass=Arguments < /dev/null -o - > /dev/null
+  as < /dev/null > null.bc
+  gccld -debug-pass=Arguments null.bc
 

... which will print a list of arguments, indicating the list of passes that @@ -192,6 +193,6 @@ section is a TODO. Basically, use bugpoint to track down the problem.

Chris Lattner
-Last modified: Wed May 21 17:20:13 CDT 2003 +Last modified: Fri May 23 09:48:53 CDT 2003 -- 2.34.1