summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGen/memccpy-libcall.c
blob: 98e0daf0f8da9737c5a792a579eb5a51fcbce4cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: %clang_cc1 -fno-builtin-memccpy -emit-llvm < %s| FileCheck %s

typedef __SIZE_TYPE__ size_t;

void *memccpy(void *, void const *, int, size_t);

void test13(char *d, char *s, int c, size_t n) {
  // CHECK: call i8* @memccpy{{.*}} #2
  memccpy(d, s, c, n);
}

// CHECK: attributes #2 = { nobuiltin "no-builtin-memccpy" }
OpenPOWER on IntegriCloud