2015-11-14 03:08:07 +08:00
|
|
|
// RUN: rm -rf %t
|
|
|
|
// RUN: %clang_cc1 -emit-llvm -o - -fmodules-cache-path=%t -fmodules -fimplicit-module-maps -F %S/Inputs %s | FileCheck %s
|
|
|
|
// RUN: %clang_cc1 -emit-llvm -fno-autolink -o - -fmodules-cache-path=%t -fmodules -fimplicit-module-maps -F %S/Inputs %s | FileCheck --check-prefix=CHECK-AUTOLINK-DISABLED %s
|
|
|
|
|
|
|
|
@import AutolinkTBD;
|
|
|
|
|
|
|
|
int f() {
|
|
|
|
return foo();
|
|
|
|
}
|
|
|
|
|
2017-06-13 04:10:48 +08:00
|
|
|
// CHECK: !llvm.linker.options = !{![[AUTOLINK_FRAMEWORK:[0-9]+]]}
|
2015-11-14 03:08:07 +08:00
|
|
|
// CHECK: ![[AUTOLINK_FRAMEWORK]] = !{!"-framework", !"AutolinkTBD"}
|
|
|
|
|
|
|
|
// CHECK-AUTOLINK-DISABLED: !llvm.module.flags
|
2017-06-13 04:10:48 +08:00
|
|
|
// CHECK-AUTOLINK-DISABLED-NOT: !llvm.linker.options
|