summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/builtin-attributes.c
blob: afde3fab84816fc2b2f64b4ed2e9527ba9d42970 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: %clang_cc1 -triple arm-unknown-linux-gnueabi -emit-llvm -o - %s | FileCheck %s

// CHECK: declare i32 @printf(i8*, ...)
void f0() {
  printf("a\n");
}

// CHECK: call void @exit
// CHECK: unreachable
void f1() {
  exit(1);
}
OpenPOWER on IntegriCloud