mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-04 13:56:08 +00:00

This implements multi-module support in IRObjectFile. Differential Revision: https://reviews.llvm.org/D26951 llvm-svn: 289578
9 lines
140 B
LLVM
9 lines
140 B
LLVM
; RUN: llvm-cat -o - %s %S/Inputs/multi-module.ll | llvm-nm - | FileCheck %s
|
|
|
|
; CHECK: T f1
|
|
; CHECK: T f2
|
|
|
|
define void @f1() {
|
|
ret void
|
|
}
|