diff options
Diffstat (limited to 'llvm/test/ThinLTO/X86/funcimport.ll')
-rw-r--r-- | llvm/test/ThinLTO/X86/funcimport.ll | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/llvm/test/ThinLTO/X86/funcimport.ll b/llvm/test/ThinLTO/X86/funcimport.ll index f4c038f03e0..1e8784d7cac 100644 --- a/llvm/test/ThinLTO/X86/funcimport.ll +++ b/llvm/test/ThinLTO/X86/funcimport.ll @@ -16,17 +16,19 @@ ; EXPORTSTATIC-DAG: define hidden i32 @staticfunc.llvm.0 ; EXPORTSTATIC-DAG: define hidden void @staticfunc2.llvm.0 -; Ensure that both weak alias to an imported function and strong alias to a -; non-imported function are correctly turned into declarations. +; Ensure that weak alias to an imported function is correctly turned into +; a declaration. ; Also ensures that alias to a linkonce function is turned into a declaration ; and that the associated linkonce function is not in the output, as it is ; lazily linked and never referenced/materialized. ; RUN: llvm-lto -thinlto-action=import %t2.bc -thinlto-index=%t3.bc -o - | llvm-dis -o - | FileCheck %s --check-prefix=IMPORTGLOB1 ; IMPORTGLOB1-DAG: define available_externally void @globalfunc1 ; IMPORTGLOB1-DAG: declare void @weakalias -; IMPORTGLOB1-DAG: declare void @analias ; IMPORTGLOB1-NOT: @linkoncealias ; IMPORTGLOB1-NOT: @linkoncefunc + +; A strong alias is imported as an available_externally copy of its aliasee. +; IMPORTGLOB1-DAG: define available_externally void @analias ; IMPORTGLOB1-NOT: declare void @globalfunc2 ; Verify that the optimizer run |