blob: 846100146e7908c4ebc3c1acb0e0dab81f460b7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
; RUN: not --crash llc < %s -mtriple=s390x-linux-gnu -argext-abi-check 2>&1 \
; RUN: | FileCheck %s
; REQUIRES: asserts
;
; Test detection of missing extension of an i16 return value.
define i16 @callee_MissingRetAttr() {
ret i16 -1
}
; CHECK: ERROR: Missing extension attribute of returned value from function:
; CHECK: i16 @callee_MissingRetAttr()
; CHECK: UNREACHABLE executed
|