29 lines
		
	
	
		
			957 B
		
	
	
	
		
			C
		
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			957 B
		
	
	
	
		
			C
		
	
	
	
// RUN: %clang_pgogen -mllvm -pgo-function-entry-coverage %s -o %t.out
 | 
						|
// RUN: env LLVM_PROFILE_FILE=%t.profraw %run %t.out
 | 
						|
// RUN: llvm-profdata merge -o %t.profdata %t.profraw
 | 
						|
// RUN: llvm-profdata show --covered %t.profdata | FileCheck %s --implicit-check-not goo
 | 
						|
 | 
						|
// RUN: %clang_cspgogen -O1 -mllvm -pgo-function-entry-coverage %s -o %t.cs.out
 | 
						|
// RUN: env LLVM_PROFILE_FILE=%t.csprofraw %run %t.cs.out
 | 
						|
// RUN: llvm-profdata merge -o %t.csprofdata %t.csprofraw
 | 
						|
// RUN: llvm-profdata show --covered %t.csprofdata --showcs | FileCheck %s --implicit-check-not goo
 | 
						|
 | 
						|
void markUsed(int a) {
 | 
						|
  volatile int g;
 | 
						|
  g = a;
 | 
						|
}
 | 
						|
 | 
						|
__attribute__((noinline)) int foo(int i) { return 4 * i + 1; }
 | 
						|
__attribute__((noinline)) int bar(int i) { return 4 * i + 2; }
 | 
						|
__attribute__((noinline)) int goo(int i) { return 4 * i + 3; }
 | 
						|
 | 
						|
int main(int argc, char *argv[]) {
 | 
						|
  markUsed(foo(5));
 | 
						|
  markUsed(argc ? bar(6) : goo(7));
 | 
						|
  return 0;
 | 
						|
}
 | 
						|
 | 
						|
// CHECK: main
 | 
						|
// CHECK: foo
 | 
						|
// CHECK: bar
 |