Sign in
ara-mdk
/
platform
/
external
/
clang
/
454d5b3ab316331b621b37d7c8b86db9f7d33fcc
/
.
/
test
/
CodeGen
/
nobuiltin.c
blob: 0a8e8bb4b6dacc538c5ce6df1f6311f9114a79bb [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -fno-builtin -O1 -S -o - %s | FileCheck %s
void
PR13497
()
{
char
content
[
2
];
// make sure we don't optimize this call to strcpy()
// CHECK: __strcpy_chk
__builtin___strcpy_chk
(
content
,
""
,
1
);
}