2019-12-09 23:47:47 +08:00
|
|
|
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
|
|
|
; RUN: llc < %s -mtriple=x86_64-- | FileCheck %s
|
|
|
|
|
2008-07-12 00:54:57 +08:00
|
|
|
define i128 @sl(i128 %x) {
|
2019-12-09 23:47:47 +08:00
|
|
|
; CHECK-LABEL: sl:
|
|
|
|
; CHECK: # %bb.0:
|
|
|
|
; CHECK-NEXT: movq %rsi, %rdx
|
|
|
|
; CHECK-NEXT: shldq $1, %rdi, %rdx
|
|
|
|
; CHECK-NEXT: leaq (%rdi,%rdi), %rax
|
|
|
|
; CHECK-NEXT: retq
|
2008-07-12 00:54:57 +08:00
|
|
|
%t = shl i128 %x, 1
|
|
|
|
ret i128 %t
|
|
|
|
}
|