c-unprofiled.c 995 B

1234567891011121314151617181920212223242526
  1. // Test that unprofiled files are recognized. Here, we have two functions in the
  2. // profile, main() and function_in_header, but we use the profile on a file that
  3. // has the profile-less some_unprofiled_function so that the only profiled code
  4. // in #included in a header.
  5. // FIXME: It would be nice to use -verify here instead of FileCheck, but -verify
  6. // doesn't play well with warnings that have no line number.
  7. // RUN: llvm-profdata merge %S/Inputs/c-unprofiled.proftext -o %t.profdata
  8. // RUN: %clang_cc1 -triple x86_64-apple-macosx10.9 -main-file-name c-unprofiled.c -I %S/Inputs/ %s -o /dev/null -emit-llvm -fprofile-instr-use=%t.profdata -Wprofile-instr-unprofiled 2>&1 | FileCheck %s
  9. // CHECK: warning: no profile data available for file "c-unprofiled.c"
  10. #include "profiled_header.h"
  11. #ifdef GENERATE_OUTDATED_DATA
  12. int main(int argc, const char *argv[]) {
  13. function_in_header(0);
  14. return 0;
  15. }
  16. #else
  17. void some_unprofiled_function(int i) {
  18. if (i)
  19. function_in_header(i);
  20. }
  21. #endif