Mercurial > hg > Members > tobaru > cbc > CbC_llvm
view test/CodeGen/ARM/rotate.ll @ 128:c347d3398279 default tip
fix
author | mir3636 |
---|---|
date | Wed, 06 Dec 2017 14:37:17 +0900 |
parents | 7d135dc70f03 |
children |
line wrap: on
line source
; RUN: llc < %s -mtriple=thumbv8--linux-gnueabihf | FileCheck %s ;; This used to cause a backend crash about not being able to ;; select ROTL. Make sure if generates the basic VSHL/VSHR. define <2 x i64> @testcase(<2 x i64>* %in) { ; CHECK-LABEL: testcase ; CHECK: vshl.i64 ; CHECK: vshr.u64 %1 = load <2 x i64>, <2 x i64>* %in %2 = lshr <2 x i64> %1, <i64 8, i64 8> %3 = shl <2 x i64> %1, <i64 56, i64 56> %4 = or <2 x i64> %2, %3 ret <2 x i64> %4 }