From f1d01fb6a45a6fa94d9f66a58107c98bfc451946 Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Wed, 17 Sep 2003 18:51:47 +0000 Subject: [PATCH] Added sections about debugging mis-compilations and incorrect code generation. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8584 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/HowToSubmitABug.html | 81 ++++++++++++++++++++++++++++++++++++--- 1 file changed, 75 insertions(+), 6 deletions(-) diff --git a/docs/HowToSubmitABug.html b/docs/HowToSubmitABug.html index fecd1afd9ce..f98e2026fc3 100644 --- a/docs/HowToSubmitABug.html +++ b/docs/HowToSubmitABug.html @@ -20,8 +20,10 @@
  • Bugs in LLVM passes
  • Miscompilations +
  • Incorrect code generation (JIT and LLC) -

    Written by Chris Lattner

    +

    Written by Chris Lattner and + Misha Brukman

    @@ -138,7 +140,7 @@ being linked together (the "llvm-gcc -v" output should include the full list of objects linked). Then run:

    -  as < /dev/null > null.bc
    +  llvm-as < /dev/null > null.bc
       gccld -debug-pass=Arguments null.bc
     

    @@ -180,13 +182,80 @@ to reproduce the problem to the llvmbugs mailing list.

    -Miscompilations +Miscompilations

    +
    +Incorrect code generation +
    @@ -196,6 +265,6 @@ section is a TODO. Basically, use bugpoint to track down the problem.

    Chris Lattner
    -Last modified: Fri May 23 09:48:53 CDT 2003 +Last modified: Wed Sep 17 13:49:15 CDT 2003 -- 2.34.1