add a note. Our 64-bit shifts are ~30% slower than gcc's

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30457 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2006-09-18 05:36:54 +00:00
parent e695a3bd32
commit f73fb88688

View File

@ -59,7 +59,8 @@ One better solution for 1LL << x is:
But that requires good 8-bit subreg support.
64-bit shifts (in general) expand to really bad code. Instead of using
cmovs, we should expand to a conditional branch like GCC produces.
//===---------------------------------------------------------------------===//