brintos

brintos / llvm-project-archived public Read only

0
0
Text · 387 B · 8461001 Raw
15 lines · plain
1; RUN: not --crash llc < %s -mtriple=s390x-linux-gnu -argext-abi-check 2>&1 \2; RUN:   | FileCheck %s3; REQUIRES: asserts4;5; Test detection of missing extension of an i16 return value.6 7define i16 @callee_MissingRetAttr() {8  ret i16 -19}10 11; CHECK: ERROR: Missing extension attribute of returned value from function:12; CHECK: i16 @callee_MissingRetAttr()13; CHECK: UNREACHABLE executed14 15