From 43be311215288968f0cd8e20cfde3d0193e80758 Mon Sep 17 00:00:00 2001 From: Brian Gaeke Date: Tue, 4 May 2004 21:22:57 +0000 Subject: [PATCH] Bugs fixed git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13360 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/ReleaseNotes.html | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html index 10d4f750b5f..c1bf1785048 100644 --- a/docs/ReleaseNotes.html +++ b/docs/ReleaseNotes.html @@ -96,6 +96,9 @@ now fully implemented and supported by all transformations, native code generators, and the interpreter.
  • Bugpoint can now narrow down code-generation bugs to a loop nest, where before it could only narrow them down to a function being miscompiled.
  • +
  • Bugpoint can now debug arbitrary +modes of llc and lli, by passing them command line flags (e.g., +-regalloc=linearscan, -enable-correct-eh-support, etc.)
  • The Control Flow Graph in the native code generators is no longer constrained to be the same as the CFG for the LLVM input code.
  • The LLVM induction variable analysis routines have been rewritten.
  • @@ -200,10 +203,10 @@ breaks SSA form
  • [X86] JIT miscompiles unsigned short to floating point cast
  • [adce] Crash handling unreachable code that unwinds
  • +
  • [sparc] LLC can't emit 2 functions of +the same name, both having constant pools
  • - -

    Bugs in the C/C++ front-end: