diff options
Diffstat (limited to 'test/Linker/Inputs/funcimport2.ll')
-rw-r--r-- | test/Linker/Inputs/funcimport2.ll | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/Linker/Inputs/funcimport2.ll b/test/Linker/Inputs/funcimport2.ll new file mode 100644 index 0000000000000..4d0ec6c03f628 --- /dev/null +++ b/test/Linker/Inputs/funcimport2.ll @@ -0,0 +1,8 @@ +define linkonce_odr hidden void @foo() { + ret void +} + +define void @bar() { + call void @foo() + ret void +} |