mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-11 08:07:22 +00:00
12 lines
269 B
LLVM
12 lines
269 B
LLVM
|
; RUN: llc -mtriple=x86_64-unknown-unknown -mcpu=core-avx-i < %s | FileCheck %s --check-prefix CHECK
|
||
|
|
||
|
define i256 @foo(<8 x i32> %a) {
|
||
|
%r = bitcast <8 x i32> %a to i256
|
||
|
ret i256 %r
|
||
|
; CHECK: foo
|
||
|
; CHECK: vextractf128
|
||
|
; CHECK: vpextrq
|
||
|
; CHECK: vpextrq
|
||
|
; CHECK: ret
|
||
|
}
|