From: Chris Lattner Date: Tue, 10 Nov 2009 23:40:49 +0000 (+0000) Subject: I did this a week or two ago X-Git-Tag: android-x86-6.0-r1~1003^2~13081 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=b6ad9153dd01f1fb3a9a483d51c39879216e6e82;p=android-x86%2Fexternal-llvm.git I did this a week or two ago git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@86754 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/README.txt b/lib/Target/README.txt index dce29b82755..d792b55dfe3 100644 --- a/lib/Target/README.txt +++ b/lib/Target/README.txt @@ -1612,12 +1612,6 @@ int int_char(char m) {if(m>7) return 0; return m;} //===---------------------------------------------------------------------===// -IPSCCP is propagating elements of first class aggregates, but is not propagating -the entire aggregate itself. This leads it to miss opportunities, for example -in test/Transforms/SCCP/ipsccp-basic.ll:test5b. - -//===---------------------------------------------------------------------===// - int func(int a, int b) { if (a & 0x80) b |= 0x80; else b &= ~0x80; return b; } Generates this: