summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGen/memcpy-no-nobuiltin-if-not-emitted.c
blob: b4c1376c5bb3a654f1193787d606897d532661f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// RUN: %clang_cc1 -triple x86_64-unknown-unknown -S -emit-llvm -o - %s | FileCheck %s
//
// Verifies that clang doesn't mark an inline builtin definition as `nobuiltin`
// if the builtin isn't emittable.

typedef unsigned long size_t;

// always_inline is used so clang will emit this body. Otherwise, we need >=
// -O1.
#define AVAILABLE_EXTERNALLY extern inline __attribute__((always_inline)) \
    __attribute__((gnu_inline))

AVAILABLE_EXTERNALLY void *memcpy(void *a, const void *b, size_t c) {
  return __builtin_memcpy(a, b, c);
}

// CHECK-LABEL: define void @foo
void foo(void *a, const void *b, size_t c) {
  // Clang will always _emit_ this as memcpy. LLVM turns it into @llvm.memcpy
  // later on if optimizations are enabled.
  // CHECK: call i8* @memcpy
  memcpy(a, b, c);
}

// CHECK-NOT: nobuiltin
OpenPOWER on IntegriCloud