YouCompleteMe/cpp/llvm/tools/clang/test/CodeGen/debug-line-1.c
Strahinja Val Markovic 1f51a89d39 Adding more llvm/clang files
These were ignored by git accidentally. We want ALL OF THEM since they all came
in the llvm/clang source distribution.
2012-07-05 17:55:45 -07:00

21 lines
459 B
C

// 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;
}