- Background here is that that these sets of tests are "invalid" to be run on z/OS - The reason is because these test constructs that HLASM never supports (HLASM doesn't support GNU style directives) - Usually tests are geared towards a particular target via the use of a triple that targets just that platform, but these tests require the use of a "default triple" - Thus, we mark these tests as "UNSUPPORTED" for z/OS since we don't want to run these for z/OS Reviewed By: yusra.syeda, abhina.sreeskantharajan Differential Revision: https://reviews.llvm.org/D105204
15 lines
298 B
LLVM
15 lines
298 B
LLVM
; RUN: llc -I %p/Inputs -filetype asm -o - %s | FileCheck %s
|
|
; UNSUPPORTED: -zos
|
|
; 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
|