<html><head><meta http-equiv="Content-Type" content="text/html charset=us-ascii"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div>Good to see you still around for a bit. Is this supposed to <i>only</i> match __strcpy_chk and <i>not</i> __builtin___strcpy_chk? Because then you need a CHECK-NOT. (And to ensure that the test isn't "fixed" otherwise, please add a comment!</div><br><div><div>On Aug 1, 2012, at 10:02 , Nuno Lopes <<a href="mailto:nunoplopes@sapo.pt">nunoplopes@sapo.pt</a>> wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite">Author: nlopes<br>Date: Wed Aug  1 12:02:30 2012<br>New Revision: 161119<br><br>URL: <a href="http://llvm.org/viewvc/llvm-project?rev=161119&view=rev">http://llvm.org/viewvc/llvm-project?rev=161119&view=rev</a><br>Log:<br>add test for PR13497<br><br>Added:<br>    cfe/trunk/test/CodeGen/nobuiltin.c<br><br>Added: cfe/trunk/test/CodeGen/nobuiltin.c<br>URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/nobuiltin.c?rev=161119&view=auto">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/nobuiltin.c?rev=161119&view=auto</a><br>==============================================================================<br>--- cfe/trunk/test/CodeGen/nobuiltin.c (added)<br>+++ cfe/trunk/test/CodeGen/nobuiltin.c Wed Aug  1 12:02:30 2012<br>@@ -0,0 +1,7 @@<br>+// RUN: %clang_cc1 -fno-builtin -O1 -S -o - %s | FileCheck %s<br>+<br>+void fn() {<br>+  char content[2];<br>+  // CHECK: __strcpy_chk<br>+  __builtin___strcpy_chk(content, "", 1);<br>+}<br><br><br>_______________________________________________<br>cfe-commits mailing list<br><a href="mailto:cfe-commits@cs.uiuc.edu">cfe-commits@cs.uiuc.edu</a><br>http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits<br></blockquote></div><br></body></html>