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):
-- bugpoint -run-llc foo.bc --tool-args
+- bugpoint -run-llc foo.bc
- bugpoint -run-llc foo.bc --tool-args
-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