diff options
author | Chris Lattner <sabre@nondot.org> | 2007-02-25 18:50:48 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-02-25 18:50:48 +0000 |
commit | 93a7145ebe32eb4aec3d0c00ef638148e456da0f (patch) | |
tree | 7a7af3731c2a4647239d79ac5f4a71306c0cb0c9 /llvm | |
parent | 8c504cf9a05aea130b326f6214c19294421517de (diff) | |
download | bcm5719-llvm-93a7145ebe32eb4aec3d0c00ef638148e456da0f.tar.gz bcm5719-llvm-93a7145ebe32eb4aec3d0c00ef638148e456da0f.zip |
add -enable-eh
llvm-svn: 34600
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/docs/HowToSubmitABug.html | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/llvm/docs/HowToSubmitABug.html b/llvm/docs/HowToSubmitABug.html index b170aa1e85c..26cb58c0940 100644 --- a/llvm/docs/HowToSubmitABug.html +++ b/llvm/docs/HowToSubmitABug.html @@ -186,6 +186,9 @@ foo.bc, one of the following commands should fail:</p> <li><tt><b>llc</b> foo.bc -f</tt></li> <li><tt><b>llc</b> foo.bc -f -relocation-model=pic</tt></li> <li><tt><b>llc</b> foo.bc -f -relocation-model=static</tt></li> +<li><tt><b>llc</b> foo.bc -f -enable-eh</tt></li> +<li><tt><b>llc</b> foo.bc -f -relocation-model=pic -enable-eh</tt></li> +<li><tt><b>llc</b> foo.bc -f -relocation-model=static -enable-eh</tt></li> </ol> <p>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):</p> <ol> -<li><tt><b>bugpoint</b> -run-llc foo.bc --tool-args</tt></li> +<li><tt><b>bugpoint</b> -run-llc foo.bc</tt></li> <li><tt><b>bugpoint</b> -run-llc foo.bc --tool-args -relocation-model=pic</tt></li> <li><tt><b>bugpoint</b> -run-llc foo.bc --tool-args -relocation-model=static</tt></li> +<li><tt><b>bugpoint</b> -run-llc foo.bc --tool-args -enable-eh</tt></li> +<li><tt><b>bugpoint</b> -run-llc foo.bc --tool-args + -relocation-model=pic -enable-eh</tt></li> +<li><tt><b>bugpoint</b> -run-llc foo.bc --tool-args + -relocation-model=static -enable-eh</tt></li> </ol> <p>Please run this, then file a bug with the instructions and reduced .bc file |