[NFC] Maintainers.rst: align email address formatting
[llvm-project.git] / clang / test / CodeGen / WebAssembly / wasm-import-name.c
blob7c3b094b9e435c72f4b43bd941240e284daef228
1 // RUN: %clang_cc1 -triple wasm32-unknown-unknown-wasm -emit-llvm -o - %s | FileCheck %s
3 void __attribute__((import_name("bar"))) foo(void);
5 void call(void) {
6 foo();
9 // CHECK: declare void @foo() [[A:#[0-9]+]]
11 // CHECK: attributes [[A]] = {{{.*}} "wasm-import-name"="bar" {{.*}}}