Sign in
fuchsia
/
third_party
/
swift-clang
/
a40ea3abe6e2f0b338d00c38fe7d724241c5af97
/
.
/
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
);
}