1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

add a note

llvm-svn: 25984
This commit is contained in:
Chris Lattner 2006-02-05 05:27:35 +00:00
parent c23d3cd6c3
commit 59378e7675

View File

@ -449,3 +449,14 @@ _foo:
lbz r2, lo16(_a+3)(r2)
stb r2, 0(r3)
blr
===-------------------------------------------------------------------------===
We generate really bad code for this:
int f(signed char *a, _Bool b, _Bool c) {
signed char t = 0;
if (b) t = *a;
if (c) *a = t;
}