mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-04 00:55:49 +03:00
13 lines
239 B
D
13 lines
239 B
D
// Test ThinLTO commandline flag
|
|
|
|
// REQUIRES: LTO
|
|
|
|
// RUN: %ldc %s -of=%t%obj -c -flto=thin -vv | FileCheck %s
|
|
// RUN: %ldc -flto=thin -run %s
|
|
|
|
// CHECK: Writing LLVM bitcode
|
|
// CHECK: Creating module summary for ThinLTO
|
|
|
|
void main()
|
|
{
|
|
}
|