Some generic tests are not supported by the nvptx now. Moreover, they are no plans to fix the tested features in nvptx. So, suggest to mark them as UNSUPPORTED Differential Revision: https://reviews.llvm.org/D123928
15 lines
304 B
LLVM
15 lines
304 B
LLVM
; RUN: llc -I %p/Inputs -filetype asm -o - %s | FileCheck %s
|
|
; UNSUPPORTED: -zos,nvptx
|
|
; REQUIRES: default_triple
|
|
|
|
module asm ".include \22module.x\22"
|
|
|
|
define void @f() {
|
|
entry:
|
|
call void asm sideeffect ".include \22function.x\22", ""()
|
|
ret void
|
|
}
|
|
|
|
; CHECK: .set MODULE, 1
|
|
; CHECK: .set FUNCTION, 1
|