aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/zext-trunc.ll
blob: e51a77abc92e167dc5b0b39a0b7778ce60db43f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc < %s -mtriple=x86_64-unknown-unknown | FileCheck %s
; rdar://7570931

define i64 @foo(i64 %a, i64 %b) nounwind {
; CHECK-LABEL: foo:
; CHECK:       # BB#0:
; CHECK-NEXT:    leal (%rdi,%rsi), %eax
; CHECK-NEXT:    retq
  %c = add i64 %a, %b
  %d = trunc i64 %c to i32
  %e = zext i32 %d to i64
  ret i64 %e
}