mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-20 03:55:48 -04:00

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
13 lines
328 B
C
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" }
|