https://bugs.llvm.org/show_bug.cgi?id=34924
Sanjay Patel <spatel+l...@rotateright.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution|--- |FIXED
--- Comment #11 from Sanjay Patel <spatel+l...@rotateright.com> ---
Should be fixed (at -O3) after:
https://reviews.llvm.org/rL349396
Asm for x86-64 target is:
_rotl: ## @rotl
movl %esi, %ecx
movl %edi, %eax
roll %cl, %eax
retq
_rotr: ## @rotr
movl %esi, %ecx
movl %edi, %eax
rorl %cl, %eax
retq
--
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs