teak-llvm/clang/test/CodeGen/memccpy-libcall.c
Guillaume Chatelet 0508c994f0 [clang] Turn -fno-builtin flag into an IR Attribute
Summary:
This is a follow up on https://reviews.llvm.org/D61634#1742154 to turn the clang driver -fno-builtin flag into an IR attribute.
I also investigated pushing the attribute earlier on (in Sema) but it looks like this patch is simple and will cover all function calls.

Reviewers: aaron.ballman, courbet

Subscribers: cfe-commits, tejohnson

Tags: #clang

Differential Revision: https://reviews.llvm.org/D71193
2019-12-12 17:21:12 +01:00

13 lines
328 B
C

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