2020-10-20 08:48:18 +02:00
|
|
|
; RUN: not llvm-as < %s 2>&1 | FileCheck %s
|
|
|
|
|
2021-07-13 22:14:55 +02:00
|
|
|
; CHECK: [[@LINE+1]]:35: error: this attribute does not apply to parameters
|
2020-10-20 08:48:18 +02:00
|
|
|
define void @test_mustprogress(i8 mustprogress %a) {
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|