1 ; RUN: llc < %s -march=nvptx64 -mcpu=sm_20 -verify-machineinstrs | FileCheck %s
2 ; RUN: %if ptxas %{ llc < %s -march=nvptx64 -mcpu=sm_20 -verify-machineinstrs | %ptxas-verify %}
4 target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v16:16:16-v32:32:32-v64:64:64-v128:128:128-n16:32:64"
6 ; CHECK: .visible .func (.param .b32 func_retval0) callee
7 define i8 @callee(i8 %a) {
14 ; CHECK: .visible .func caller
15 define void @caller(ptr %a) {
17 %val = load i8, ptr %a
18 %ret = tail call i8 @callee(i8 %val)