summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/statements.c
blob: 1ff7601adf6888ec80d9828c22458100f76a3865 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// RUN: clang-cc < %s -emit-llvm

void test1(int x) {
switch (x) {
case 111111111111111111111111111111111111111:
bar();
}
}

// Mismatched type between return and function result.
int test2() { return; }
void test3() { return 4; }

OpenPOWER on IntegriCloud