Update comment from r203315 based on review

llvm-svn: 203361
This commit is contained in:
Adam Nemet 2014-03-08 21:51:55 +00:00
parent 8ed7414e58
commit 4203039760
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
; RUN: llc < %s -mtriple=x86_64-apple-darwin -mcpu=generic | FileCheck %s
; Check that we recognize this idiom for rotation too:
; a << (b & 31) | a >> ((0 - b) & 31)
; a << (b & (OpSize-1)) | a >> ((0 - b) & (OpSize-1))
define i32 @rotate_left_32(i32 %a, i32 %b) {
; CHECK-LABEL: rotate_left_32: