Skip to content

Commit 4bee8e0

Browse files
author
John Criswell
committed
Added all known bugs that are relevant and relatively concrete.
llvm-svn: 10481
1 parent 8f7bf89 commit 4bee8e0

File tree

1 file changed

+42
-11
lines changed

1 file changed

+42
-11
lines changed

llvm/docs/ReleaseNotes.html

Lines changed: 42 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -362,6 +362,18 @@
362362
<li><a href="http://llvm.cs.uiuc.edu/PR82">LLVM cannot handle structures with
363363
more than 256 elements</a>.</li>
364364

365+
<li>
366+
The gccld program
367+
<a href="http://llvm.cs.uiuc.edu/bugs/show_bug.cgi?id=139">
368+
does not link objects/archives in the order specified on the command line.
369+
</a>
370+
</li>
371+
372+
<li>
373+
<a href="http://llvm.cs.uiuc.edu/bugs/show_bug.cgi?id=174">
374+
Tail duplication does not update SSA form correctly.
375+
</a>
376+
</li>
365377
</ul>
366378

367379
</div>
@@ -386,18 +398,27 @@
386398
foo(X);
387399
}
388400
</pre></li>
389-
</ul>
390-
</div>
391401

392-
<div class="doc_subsubsection">
393-
Bugs in 1.1 fixed in 1.2
394-
</div>
402+
<li>
403+
Initialization of global union variables can only be done
404+
<a href="http://llvm.cs.uiuc.edu/bugs/show_bug.cgi?id=162">with the largest
405+
union member</a>.
406+
</li>
395407

396-
<div class="doc_text">
397-
<ul>
398-
<li><a href="http://llvm.cs.uiuc.edu/PR186">Need weak linkage on
399-
memory-management functions in libc runtime to allow them to be
400-
overridden</a></li>
408+
<li>
409+
<a href="http://llvm.cs.uiuc.edu/bugs/show_bug.cgi?id=182">
410+
Functions marked "extern inline" are not compiled into LLVM with linkonce
411+
linkage.
412+
</a>
413+
</li>
414+
415+
416+
<li>
417+
The memory management functions in the libc runtime
418+
<a href="http://llvm.cs.uiuc.edu/PR186">need weak linkage so that they can be
419+
overridden.
420+
</a>
421+
</li>
401422
</ul>
402423
</div>
403424

@@ -566,8 +587,13 @@
566587
<ul>
567588
<li>The C++ front-end inherits all problems afflicting the <a href="#c-fe">C
568589
front-end</a>.</li>
569-
</ul>
570590

591+
<li>
592+
<a href="http://llvm.cs.uiuc.edu/bugs/show_bug.cgi?id=137">
593+
Code is generated for empty classes.
594+
</a>
595+
</li>
596+
</ul>
571597
</div>
572598

573599
<!-- _______________________________________________________________________ -->
@@ -637,6 +663,11 @@
637663
support the <tt>unwind</tt> instruction</a>, so code that throws a C++ exception
638664
or calls the C <tt>longjmp</tt> function will abort.</li>
639665

666+
<li>
667+
<a href="http://llvm.cs.uiuc.edu/bugs/show_bug.cgi?id=167">
668+
The llc program can crash on legal code.
669+
</a>
670+
</li>
640671
</ul>
641672

642673
</div>

0 commit comments

Comments
 (0)