We should just test the effect of the clang level option here, i.e. that a summary is correctly emitted with -flto=thin From: Mehdi Amini <mehdi.amini@apple.com> llvm-svn: 267321
5 lines
191 B
C
5 lines
191 B
C
// RUN: %clang_cc1 -flto=thin -emit-llvm-bc < %s | llvm-bcanalyzer -dump | FileCheck %s
|
|
// ; Check that the -flto=thin option emits a summary
|
|
// CHECK: <GLOBALVAL_SUMMARY_BLOCK
|
|
int main() {}
|