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