This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
11 lines
243 B
LLVM
11 lines
243 B
LLVM
; RUN: llc < %s -march=nvptx -mcpu=sm_20 | FileCheck %s
|
|
|
|
declare <4 x float> @bar()
|
|
|
|
define void @foo(<4 x float>* %ptr) {
|
|
; CHECK: ld.param.v4.f32
|
|
%val = tail call <4 x float> @bar()
|
|
store <4 x float> %val, <4 x float>* %ptr
|
|
ret void
|
|
}
|