brintos

brintos / llvm-project-archived public Read only

0
0
Text · 568 B · 0f76210 Raw
12 lines · c
1// RUN: %clang_cc1 -mllvm -emptyline-comment-coverage=false -fprofile-instrument=clang -fcoverage-mapping -dump-coverage-mapping -emit-llvm-only -main-file-name casts.c %s | FileCheck %s2 3int main(void) {                                               // CHECK: File 0, [[@LINE]]:16 -> [[@LINE+4]]:2 = #04                                                               // CHECK: File 0, [[@LINE+1]]:41 -> [[@LINE+1]]:54 = #15  int window_size = (sizeof(int) <= 2 ? (unsigned)512 : 1024); // CHECK-NEXT: File 0, [[@LINE]]:57 -> [[@LINE]]:61 = (#0 - #1)6  return 0;7}8 9 10 11 12