X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=docs%2FHowToSubmitABug.html;h=90efbe321b1429e1fc77cf081eef70430b1f0eee;hb=2db49d797b86b7f3615bae17b2b016727778a6c4;hp=82d17ecd6db2a0274fb390ceb8819f8da485d0e8;hpb=f00ddb04dfdef01a0389fa4c3cf63f7fa23627b9;p=oota-llvm.git diff --git a/docs/HowToSubmitABug.html b/docs/HowToSubmitABug.html index 82d17ecd6db..90efbe321b1 100644 --- a/docs/HowToSubmitABug.html +++ b/docs/HowToSubmitABug.html @@ -60,7 +60,7 @@ more easily.

Once you have a reduced test-case, go to the LLVM Bug Tracking System and fill out the form with the necessary details (note that you don't -need to pick a catagory, just use the "new-bugs" catagory if you're not sure). +need to pick a category, just use the "new-bugs" category if you're not sure). The bug description should contain the following information:

@@ -183,12 +183,9 @@ to llvm-gcc (in addition to the options you already pass). Once your have foo.bc, one of the following commands should fail:

    -
  1. llc foo.bc -f
  2. -
  3. llc foo.bc -f -relocation-model=pic
  4. -
  5. llc foo.bc -f -relocation-model=static
  6. -
  7. llc foo.bc -f -enable-eh
  8. -
  9. llc foo.bc -f -relocation-model=pic -enable-eh
  10. -
  11. llc foo.bc -f -relocation-model=static -enable-eh
  12. +
  13. llc foo.bc
  14. +
  15. llc foo.bc -relocation-model=pic
  16. +
  17. llc foo.bc -relocation-model=static

If none of these crash, please follow the instructions for a @@ -202,11 +199,6 @@ the one corresponding to the command above that failed):

-relocation-model=pic
  • bugpoint -run-llc foo.bc --tool-args -relocation-model=static
  • -
  • bugpoint -run-llc foo.bc --tool-args -enable-eh
  • -
  • bugpoint -run-llc foo.bc --tool-args - -relocation-model=pic -enable-eh
  • -
  • bugpoint -run-llc foo.bc --tool-args - -relocation-model=static -enable-eh
  • Please run this, then file a bug with the instructions and reduced .bc file @@ -269,7 +261,7 @@ Backend, and then link in the shared object it generates.

     bugpoint -run-jit -output=[correct output file] [bitcode file]  \
    -         --tool-args -- [arguments to pass to lli]               \
    +         --tool-args -- [arguments to pass to lli]              \
              --args -- [program arguments]
     
    @@ -279,7 +271,7 @@ bugpoint -run-jit -output=[correct output file] [bitcode file] \
     bugpoint -run-llc -output=[correct output file] [bitcode file]  \
    -         --tool-args -- [arguments to pass to llc]               \
    +         --tool-args -- [arguments to pass to llc]              \
              --args -- [program arguments]
     
    @@ -320,7 +312,7 @@ the following:

    -llc test.bc -o test.s -f
    +llc test.bc -o test.s
    gcc test.s safe.so -o test.llc
    ./test.llc [program options]