Author: nico Date: Mon Oct 1 03:44:54 2012 New Revision: 164929 URL: http://llvm.org/viewvc/llvm-project?rev=164929&view=rev Log: Mark two Clang tests as passing on ARM
Also move one of them from grep to FileCheck. Patch from Joey Gouly <[email protected]>! Modified: cfe/trunk/test/CodeGen/2008-01-25-ByValReadNone.c cfe/trunk/test/CodeGenCXX/member-alignment.cpp Modified: cfe/trunk/test/CodeGen/2008-01-25-ByValReadNone.c URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/2008-01-25-ByValReadNone.c?rev=164929&r1=164928&r2=164929&view=diff ============================================================================== --- cfe/trunk/test/CodeGen/2008-01-25-ByValReadNone.c (original) +++ cfe/trunk/test/CodeGen/2008-01-25-ByValReadNone.c Mon Oct 1 03:44:54 2012 @@ -1,7 +1,9 @@ -// RUN: %clang_cc1 -emit-llvm -o - %s | not grep readonly -// RUN: %clang_cc1 -emit-llvm -o - %s | not grep readnone +// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s -// XFAIL: arm,mips +// XFAIL: mips + +// CHECK-NOT: readonly +// CHECK-NOT: readnone // The struct being passed byval means that we cannot mark the // function readnone. Readnone would allow stores to the arg to Modified: cfe/trunk/test/CodeGenCXX/member-alignment.cpp URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/member-alignment.cpp?rev=164929&r1=164928&r2=164929&view=diff ============================================================================== --- cfe/trunk/test/CodeGenCXX/member-alignment.cpp (original) +++ cfe/trunk/test/CodeGenCXX/member-alignment.cpp Mon Oct 1 03:44:54 2012 @@ -1,5 +1,5 @@ // RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s -// XFAIL: arm,powerpc +// XFAIL: powerpc // rdar://7268289 _______________________________________________ cfe-commits mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits
