llvm-for-llvmta/test/CodeGen/ARM/store_half.ll
Nils Hölscher 3500bf8dde first commit
2022-04-25 10:02:23 +02:00

10 lines
465 B
LLVM

; RUN: llc < %s -mtriple=thumbebv8.2a-arm-none-eabi -mattr=+fullfp16 -filetype=obj -o /dev/null
; RUN: llc < %s -mtriple=thumbv8.2a-arm-none-eabi -mattr=+fullfp16 -filetype=obj -o /dev/null
; RUN: llc < %s -mtriple=armebv8.2a-arm-none-eabi -mattr=+fullfp16 -filetype=obj -o /dev/null
; RUN: llc < %s -mtriple=armv8.2a-arm-none-eabi -mattr=+fullfp16 -filetype=obj -o /dev/null
define void @woah(half* %waythere) {
store half 0xHE110, half* %waythere
ret void
}