From 2b9fa800d66f4072ff7f821113e51c9be0358905 Mon Sep 17 00:00:00 2001 From: James Molloy Date: Fri, 13 Nov 2015 17:29:18 +0000 Subject: [PATCH] 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 --- test/CodeGenCXX/main-norecurse.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.50.1