[PATCH] D60749: [Test] Remove obsolete test.
Michael Kruse via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Apr 16 09:43:12 PDT 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rC358507: [Test] Remove obsolete test. (authored by Meinersbur, committed by ).
Repository:
rC Clang
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D60749/new/
https://reviews.llvm.org/D60749
Files:
test/AST/ast-print-pragmas-xfail.cpp
Index: test/AST/ast-print-pragmas-xfail.cpp
===================================================================
--- test/AST/ast-print-pragmas-xfail.cpp
+++ test/AST/ast-print-pragmas-xfail.cpp
@@ -1,21 +0,0 @@
-// RUN: %clang_cc1 %s -ast-print -o - | FileCheck %s
-
-// FIXME: Test fails because attribute order is reversed by ParsedAttributes.
-// XFAIL: *
-
-void run1(int *List, int Length) {
- int i = 0;
-// CHECK: #pragma loop vectorize(4)
-// CHECK-NEXT: #pragma loop interleave(8)
-// CHECK-NEXT: #pragma loop vectorize(enable)
-// CHECK-NEXT: #pragma loop interleave(enable)
-#pragma loop vectorize(4)
-#pragma loop interleave(8)
-#pragma loop vectorize(enable)
-#pragma loop interleave(enable)
-// CHECK-NEXT: while (i < Length)
- while (i < Length) {
- List[i] = i;
- i++;
- }
-}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D60749.195404.patch
Type: text/x-patch
Size: 801 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20190416/7e04bb81/attachment.bin>
More information about the cfe-commits
mailing list