mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
acbe458a3f
Submitted by: Anton Lokhmotov <Anton.Lokhmotov@arm.com> Approved by: o Anton Korobeynikov o Micah Villmow o David Neto llvm-svn: 157393
9 lines
192 B
LLVM
9 lines
192 B
LLVM
; RUN: llvm-as < %s | llvm-dis | FileCheck %s
|
|
; Basic smoke test for half type.
|
|
|
|
; CHECK: define half @halftest
|
|
define half @halftest(half %A0) {
|
|
; CHECK: ret half %A0
|
|
ret half %A0
|
|
}
|