This recommits r250398 with fixes to the tests for bot failures. Add "-target x86_64-unknown-linux" to the clang invocations that check for the gold plugin. llvm-svn: 250455
10 lines
290 B
C
10 lines
290 B
C
// RUN: %clang_cc1 -flto=thin -emit-llvm-bc < %s | llvm-bcanalyzer -dump | FileCheck %s
|
|
// CHECK: <FUNCTION_SUMMARY_BLOCK
|
|
// CHECK-NEXT: <PERMODULE_ENTRY
|
|
// CHECK-NEXT: <PERMODULE_ENTRY
|
|
// CHECK-NEXT: </FUNCTION_SUMMARY_BLOCK
|
|
|
|
__attribute__((noinline)) void foo() {}
|
|
|
|
int main() { foo(); }
|