xref: /llvm-project/llvm/test/MC/AsmParser/include.ll (revision a1b4e13cff2a792571927ee1fc6eebb05e40fae9)
1; RUN: llc -I %p/Inputs -filetype asm -o - %s | FileCheck %s
2; UNSUPPORTED: target={{.*}}-zos{{.*}},target=nvptx{{.*}}
3; REQUIRES: default_triple
4
5module asm ".include \22module.x\22"
6
7define void @f() {
8entry:
9  call void asm sideeffect ".include \22function.x\22", ""()
10  ret void
11}
12
13; CHECK: .set MODULE, 1
14; CHECK: .set FUNCTION, 1
15