reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    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 -debug-info-kind=limited %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 !
  
extern int atoi(const char *);

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

  return 0;
}