mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-04 10:04:33 +00:00
Add a microoptimization note.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@159082 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
50b4c52633
commit
d52998a815
@ -964,6 +964,12 @@ optimized with "clang -emit-llvm-bc | opt -std-compile-opts".
|
|||||||
|
|
||||||
//===---------------------------------------------------------------------===//
|
//===---------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
unsigned f(unsigned x) { return ((x & 7) + 1) & 15; }
|
||||||
|
The & 15 part should be optimized away, it doesn't change the result. Currently
|
||||||
|
not optimized with "clang -emit-llvm-bc | opt -std-compile-opts".
|
||||||
|
|
||||||
|
//===---------------------------------------------------------------------===//
|
||||||
|
|
||||||
This was noticed in the entryblock for grokdeclarator in 403.gcc:
|
This was noticed in the entryblock for grokdeclarator in 403.gcc:
|
||||||
|
|
||||||
%tmp = icmp eq i32 %decl_context, 4
|
%tmp = icmp eq i32 %decl_context, 4
|
||||||
|
Loading…
Reference in New Issue
Block a user