From: Chris Lattner Date: Thu, 3 Jun 2004 22:35:13 +0000 (+0000) Subject: CQ bug implemented X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=3bff8f57aeac62dbd42d74bc36b24ffbd191aca2;p=oota-llvm.git CQ bug implemented git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13996 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html index be15bc15dbf..196c3ca65b3 100644 --- a/docs/ReleaseNotes.html +++ b/docs/ReleaseNotes.html @@ -216,6 +216,10 @@ operators into the strict versions when useful (such as "if (A < B || A
  • LLVM now has infrastructure for (simple and sparse conditional) constant propagation of function calls. It currently supports a few math library functions like sqrt/sin/cos/etc.
  • + +
  • The C backend now emits Syntactic +loops in the code to help C compilers whose optimizers do not recognize +loops formed from gotos (like GCC).