forked from OSchip/llvm-project
18 lines
718 B
LLVM
18 lines
718 B
LLVM
|
; RUN: llc -march=amdgcn -verify-machineinstrs < %s | FileCheck -check-prefix=GCN %s
|
||
|
|
||
|
; Make sure the add and load are reduced to 32-bits even with the
|
||
|
; bitcast to vector.
|
||
|
; GCN-LABEL: {{^}}bitcast_int_to_vector_extract_0:
|
||
|
; GCN-DAG: s_load_dword [[B:s[0-9]+]]
|
||
|
; GCN-DAG: buffer_load_dword [[A:v[0-9]+]]
|
||
|
; GCN: v_add_i32_e32 [[ADD:v[0-9]+]], vcc, [[B]], [[A]]
|
||
|
; GCN: buffer_store_dword [[ADD]]
|
||
|
define void @bitcast_int_to_vector_extract_0(i32 addrspace(1)* %out, i64 addrspace(1)* %in, i64 %b) {
|
||
|
%a = load i64, i64 addrspace(1)* %in
|
||
|
%add = add i64 %a, %b
|
||
|
%val.bc = bitcast i64 %add to <2 x i32>
|
||
|
%extract = extractelement <2 x i32> %val.bc, i32 0
|
||
|
store i32 %extract, i32 addrspace(1)* %out
|
||
|
ret void
|
||
|
}
|