From c25904f23a361d6550b7a2f5446707a6df31c3fb Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 25 Feb 2007 18:50:48 +0000 Subject: [PATCH] add -enable-eh git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34600 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/HowToSubmitABug.html | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/docs/HowToSubmitABug.html b/docs/HowToSubmitABug.html index b170aa1e85c..26cb58c0940 100644 --- a/docs/HowToSubmitABug.html +++ b/docs/HowToSubmitABug.html @@ -186,6 +186,9 @@ foo.bc, one of the following commands should fail:

  • llc foo.bc -f
  • llc foo.bc -f -relocation-model=pic
  • llc foo.bc -f -relocation-model=static
  • +
  • llc foo.bc -f -enable-eh
  • +
  • llc foo.bc -f -relocation-model=pic -enable-eh
  • +
  • llc foo.bc -f -relocation-model=static -enable-eh
  • If none of these crash, please follow the instructions for a @@ -194,11 +197,16 @@ be able to reduce this with one of the following bugpoint command lines (use the one corresponding to the command above that failed):

      -
    1. bugpoint -run-llc foo.bc --tool-args
    2. +
    3. bugpoint -run-llc foo.bc
    4. bugpoint -run-llc foo.bc --tool-args -relocation-model=pic
    5. bugpoint -run-llc foo.bc --tool-args -relocation-model=static
    6. +
    7. bugpoint -run-llc foo.bc --tool-args -enable-eh
    8. +
    9. bugpoint -run-llc foo.bc --tool-args + -relocation-model=pic -enable-eh
    10. +
    11. 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