1; RUN: llc -I %p/Inputs -filetype asm -o - %s | FileCheck %s
2; UNSUPPORTED: -zos,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