view test/tools/llvm-cov/showRegionMarkers.cpp @ 77:54457678186b LLVM3.6

LLVM 3.6
author Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
date Mon, 08 Sep 2014 22:06:00 +0900
parents
children 60c9769439b8
line wrap: on
line source

// RUN: llvm-cov show %S/Inputs/regionMarkers.covmapping -instr-profile %S/Inputs/regionMarkers.profdata -show-regions -dump -filename-equivalence %s | FileCheck %s

int main() {                      // CHECK: Marker at [[@LINE]]:12 = 1
  int x = 0;

  if (x) {                        // CHECK: Marker at [[@LINE]]:10 = 0
    x = 0;
  } else {                        // CHECK: Marker at [[@LINE]]:10 = 1
    x = 1;
  }
                                  // CHECK: Marker at [[@LINE+2]]:19 = 101
                                  // CHECK: Marker at [[@LINE+1]]:28 = 100
  for (int i = 0; i < 100; ++i) { // CHECK: Marker at [[@LINE]]:33 = 100
    x = 1;
  }
                                  // CHECK: Marker at [[@LINE+1]]:16 = 1
  x = x < 10 ? x + 1 : x - 1;     // CHECK: Marker at [[@LINE]]:24 = 0
  x = x > 10 ?
        x - 1:                    // CHECK: Marker at [[@LINE]]:9 = 0
        x + 1;                    // CHECK: Marker at [[@LINE]]:9 = 1

  return 0;
}

// llvm-cov doesn't work on big endian yet
// XFAIL: powerpc64-, s390x, mips-, mips64-, sparc