X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=docs%2FHowToSubmitABug.html;h=90efbe321b1429e1fc77cf081eef70430b1f0eee;hb=2db49d797b86b7f3615bae17b2b016727778a6c4;hp=bdec1c091096f971ea6bbee5a035259cbdeea965;hpb=4a2bca8bc39d24b7cae6704ff92f793ce27bb051;p=oota-llvm.git diff --git a/docs/HowToSubmitABug.html b/docs/HowToSubmitABug.html index bdec1c09109..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 @@ -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]