Skip to content
This repository was archived by the owner on Feb 5, 2019. It is now read-only.

Commit b033b03

Browse files
committed
Update comment from r203315 based on review
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203361 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 29b1962 commit b033b03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/CodeGen/X86/rotate4.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
; RUN: llc < %s -mtriple=x86_64-apple-darwin -mcpu=generic | FileCheck %s
22

33
; Check that we recognize this idiom for rotation too:
4-
; a << (b & 31) | a >> ((0 - b) & 31)
4+
; a << (b & (OpSize-1)) | a >> ((0 - b) & (OpSize-1))
55

66
define i32 @rotate_left_32(i32 %a, i32 %b) {
77
; CHECK-LABEL: rotate_left_32:

0 commit comments

Comments
 (0)