Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
2f13eb116e62161c5e4d198f7831f226e5cea9da
/
.
/
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
);
}