<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; "><br><div><div>On Jul 4, 2013, at 7:28 AM, Rafael Espindola <<a href="mailto:rafael.espindola@gmail.com">rafael.espindola@gmail.com</a>> wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite">Author: rafael<br>Date: Thu Jul  4 09:28:33 2013<br>New Revision: 185635<br><br>URL: <a href="http://llvm.org/viewvc/llvm-project?rev=185635&view=rev">http://llvm.org/viewvc/llvm-project?rev=185635&view=rev</a><br>Log:<br>Convert test to FileCheck.<br><br>Modified:<br>    cfe/trunk/test/CodeGen/2004-11-27-StaticFunctionRedeclare.c<br></blockquote><div><br></div><pre style="font-family: 'Courier New', courier, monotype, monospace; "><span class="stdout">2004-11-27-StaticFunctionRedeclare.c</span></pre><div>Is failing on our Windows buildbot. Here is all what I see:</div><div><br></div><div><pre style="font-family: 'Courier New', courier, monotype, monospace; "><span class="stdout">/Users/buildslave/zorg/buildbot/smooshlab/slave-0.8/build.apple-clang-x86_64-darwin12-R_Osceola/clang.roots/Sources/clang/src/tools/clang/test/CodeGen/2004-11-27-StaticFunctionRedeclare.c:11:11: error: expected string not found in input
</span></pre></div><div><span class="stdout"><br></span></div><div><span class="stdout"><pre style="font-family: 'Courier New', courier, monotype, monospace; "><span class="stdout">FAIL: Clang :: CodeGen/2004-11-27-StaticFunctionRedeclare.c (1046 of 15084)
******************** TEST 'Clang :: CodeGen/2004-11-27-StaticFunctionRedeclare.c' FAILED ********************
</span><span class="stdout">
/.../clang/src/tools/clang/test/CodeGen/2004-11-27-StaticFunctionRedeclare.c:11:11: error: expected string not found in input
// CHECK: define internal {{.*}} i32 @func(
          ^
<stdin>:7:131: note: scanning from here
 %1 = call i32 (i32 (...)*, ...)* bitcast (i32 (...)* @foo to i32 (i32 (...)*, ...)*)(i32 (...)* bitcast (i32 (i8**, i8**)* @func to i32 (...)*))
                                                                                                                                  ^
<stdin>:14:1: note: possible intended match here
define internal i32 @func(i8** %A, i8** %B) #0 {
^
--
</span></pre><div><span class="stdout"><br></span></div></span></div><div><br></div><blockquote type="cite"><br>Modified: cfe/trunk/test/CodeGen/2004-11-27-StaticFunctionRedeclare.c<br>URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/2004-11-27-StaticFunctionRedeclare.c?rev=185635&r1=185634&r2=185635&view=diff">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/2004-11-27-StaticFunctionRedeclare.c?rev=185635&r1=185634&r2=185635&view=diff</a><br>==============================================================================<br>--- cfe/trunk/test/CodeGen/2004-11-27-StaticFunctionRedeclare.c (original)<br>+++ cfe/trunk/test/CodeGen/2004-11-27-StaticFunctionRedeclare.c Thu Jul  4 09:28:33 2013<br>@@ -1,12 +1,14 @@<br>-// RUN: %clang_cc1 -emit-llvm %s -o - | \<br>-// RUN:   opt -std-compile-opts -emit-llvm | not grep {declare i32.*func}<br>+// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s<br><br> // There should not be an unresolved reference to func here.  Believe it or not,<br>-// the "expected result" is a function named 'func' which is internal and <br>+// the "expected result" is a function named 'func' which is internal and<br> // referenced by bar().<br><br> // This is PR244<br><br>+// CHECK: define void @bar(<br>+// CHECK: call {{.*}} @func<br>+// CHECK: define internal i32 @func(<br> static int func();<br> void bar() {<br>   int func();<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>