hanchenye-llvm-project/clang/test/CodeGen/nobuiltin.c

8 lines
163 B
C
Raw Normal View History

2012-08-02 01:02:30 +08:00
// RUN: %clang_cc1 -fno-builtin -O1 -S -o - %s | FileCheck %s
void fn() {
char content[2];
// CHECK: __strcpy_chk
__builtin___strcpy_chk(content, "", 1);
}