From ea3e51d73f01de908030e9dc5c7654cc657a19cc Mon Sep 17 00:00:00 2001 From: David Blaikie Date: Mon, 29 Jun 2015 17:29:50 +0000 Subject: Account for calling convention specifiers in function definitions in IR test cases Several tests wouldn't pass when executed on an armv7a_pc_linux triple due to the non-default arm_aapcs calling convention produced on the function definitions in the IR output. Account for this with the application of a little regex. Patch by Ying Yi. llvm-svn: 240971 --- clang/test/Sema/attr-malloc.c | 4 ++-- clang/test/Sema/enable_if.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'clang/test/Sema') diff --git a/clang/test/Sema/attr-malloc.c b/clang/test/Sema/attr-malloc.c index 5351d757a23..6af15d2f682 100644 --- a/clang/test/Sema/attr-malloc.c +++ b/clang/test/Sema/attr-malloc.c @@ -19,10 +19,10 @@ __attribute((malloc)) int (*g)(); // expected-warning{{attribute only applies to __attribute((malloc)) void * xalloc(unsigned n) { return malloc(n); } // no-warning -// RUN: grep 'define noalias .* @xalloc(' %t +// RUN: grep 'define .*noalias .* @xalloc(' %t %t #define malloc_like __attribute((__malloc__)) void * xalloc2(unsigned) malloc_like; void * xalloc2(unsigned n) { return malloc(n); } -// RUN: grep 'define noalias .* @xalloc2(' %t +// RUN: grep 'define .*noalias .* @xalloc2(' %t %t diff --git a/clang/test/Sema/enable_if.c b/clang/test/Sema/enable_if.c index a3c4323c4c9..4644858593d 100644 --- a/clang/test/Sema/enable_if.c +++ b/clang/test/Sema/enable_if.c @@ -49,7 +49,7 @@ size_t strnlen(const char *s, size_t maxlen) // expected-note{{candidate functi __attribute__((unavailable("'maxlen' is larger than the buffer size"))); void test2(const char *s, int i) { -// CHECK: define void @test2 +// CHECK: define {{.*}}void @test2 const char c[123]; strnlen(s, i); // CHECK: call {{.*}}strnlen_real1 -- cgit v1.2.3