From: James Molloy Date: Fri, 13 Nov 2015 17:29:18 +0000 (+0000) Subject: Slacken the norecurse test slightly X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2b9fa800d66f4072ff7f821113e51c9be0358905;p=clang Slacken the norecurse test slightly It has been reported that this test currently fails on some Power buildbots due to them adding a "signext" function attribute. As that's not what we're checking here, slacken off the test a bit. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@253055 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGenCXX/main-norecurse.cpp b/test/CodeGenCXX/main-norecurse.cpp index 17d5ba8951..0f36402609 100644 --- a/test/CodeGenCXX/main-norecurse.cpp +++ b/test/CodeGenCXX/main-norecurse.cpp @@ -1,6 +1,6 @@ // RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s -// CHECK: define i{{.*}} @main({{.*}}) #0 +// CHECK: define {{.*}} @main({{.*}}) #0 int main(int argc, char **argv) { return 1; }