[WebAssembly] Setting export_name implies llvm.used

This change updates the clang front end to add symbols to llvm.used
when they have explicit export_name attribute.

Differential Revision: https://reviews.llvm.org/D71493
This commit is contained in:
Sam Clegg 2019-12-13 14:44:06 -08:00
parent 376cf43729
commit 0a1e349a79
2 changed files with 4 additions and 2 deletions
clang

View File

@ -5772,8 +5772,8 @@ static void handleWebAssemblyExportNameAttr(Sema &S, Decl *D, const ParsedAttr &
if (!S.checkStringLiteralArgumentAttr(AL, 0, Str, &ArgLoc))
return;
FD->addAttr(::new (S.Context)
WebAssemblyExportNameAttr(S.Context, AL, Str));
D->addAttr(::new (S.Context) WebAssemblyExportNameAttr(S.Context, AL, Str));
D->addAttr(UsedAttr::CreateImplicit(S.Context));
}
static void handleWebAssemblyImportModuleAttr(Sema &S, Decl *D, const ParsedAttr &AL) {

View File

@ -6,6 +6,8 @@ int foo(void) {
return 43;
}
// CHECK: @llvm.used = appending global [1 x i8*] [i8* bitcast (i32 ()* @foo to i8*)]
// CHECK: define i32 @foo() [[A:#[0-9]+]]
// CHECK: attributes [[A]] = {{{.*}} "wasm-export-name"="bar" {{.*}}}