summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2008-05-15 22:22:37 +0000
committerDale Johannesen <dalej@apple.com>2008-05-15 22:22:37 +0000
commite31d87495ad93014576121dc8d24467f360caccd (patch)
treef69e00479640c1bafb5109c7575b31e641223012 /test
parent0ef8de30fa8dd317c8b45711fe144d39e51ecfa4 (diff)
downloadllvm-e31d87495ad93014576121dc8d24467f360caccd.tar.gz
llvm-e31d87495ad93014576121dc8d24467f360caccd.tar.bz2
llvm-e31d87495ad93014576121dc8d24467f360caccd.tar.xz
Evan has implemented this on ppc, so run the test there.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51166 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/CFrontend/2008-03-05-syncPtr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CFrontend/2008-03-05-syncPtr.c b/test/CFrontend/2008-03-05-syncPtr.c
index b371c34e6b..03aedab952 100644
--- a/test/CFrontend/2008-03-05-syncPtr.c
+++ b/test/CFrontend/2008-03-05-syncPtr.c
@@ -1,6 +1,6 @@
// RUN: %llvmgcc %s -S -emit-llvm -o - | grep llvm.atomic
-// XFAIL: powerpc|sparc-sun-solaris2|arm|ia64
-// Feature currently implemented only for x86 and alpha.
+// XFAIL: sparc-sun-solaris2|arm|ia64
+// Feature currently implemented only for x86, alpha, powerpc.
int* foo(int** a, int* b, int* c) {
return __sync_val_compare_and_swap (a, b, c);