[Frontend] Remove unused includes (NFC) (#116927)
[llvm-project.git] / llvm / test / tools / llvm-split / AMDGPU / declarations.ll
blob755676061b2557d1a22b832c1d4704475513895b
1 ; RUN: rm -rf %t0 %t1
2 ; RUN: llvm-split -o %t %s -j 2 -mtriple amdgcn-amd-amdhsa
3 ; RUN: llvm-dis -o - %t0 | FileCheck --check-prefix=CHECK0 %s
4 ; RUN: not llvm-dis -o - %t1
6 ; Empty module without any defs should result in a single output module that is
7 ; an exact copy of the input.
9 ; CHECK0: declare void @A
10 ; CHECK0: declare void @B
12 declare void @A()
13 declare void @B()