blob: 5a2bf1ef618ef55c5a1b08e6857e372a0b836358 [file] [log] [blame]
Nuno Lopesbf1febd2012-08-01 17:02:30 +00001// RUN: %clang_cc1 -fno-builtin -O1 -S -o - %s | FileCheck %s
2
3void fn() {
4 char content[2];
5 // CHECK: __strcpy_chk
6 __builtin___strcpy_chk(content, "", 1);
7}