summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/debug-line-1.c
blob: 00d4f421f8a1004fb7eb4b4cd140f15f736b027f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// RUN: %clang_cc1 -triple x86_64-apple-darwin -o - -emit-llvm -g %s | FileCheck %s
// REQUIRES: asserts
// PR9796

// Check to make sure that we emit the block for the break so that we can count the line.
// CHECK: sw.bb:                                            ; preds = %entry
// CHECK: br label %sw.epilog, !dbg !21
  
extern int atoi(const char *);

int f(char* arg) {
  int x = atoi(arg);
  
  switch(x) {
    case 1:
      break;
  }

  return 0;
}