bolt/deps/llvm-18.1.8/llvm/test/CodeGen/X86/2008-07-11-SHLBy1.ll
2025-02-14 19:21:04 +01:00

13 lines
381 B
LLVM

; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc < %s -mtriple=x86_64-- | FileCheck %s
define i128 @sl(i128 %x) {
; 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
%t = shl i128 %x, 1
ret i128 %t
}