diff options
author | Tobias Grosser <tobias@grosser.es> | 2016-05-29 06:03:44 +0000 |
---|---|---|
committer | Tobias Grosser <tobias@grosser.es> | 2016-05-29 06:03:44 +0000 |
commit | 6a114505c433a830a58cd379b0df66a9d63f496c (patch) | |
tree | db3ae53c9a4f053678cdf951c40ac0e824fc3262 | |
parent | d28449e2ca02d6ad5aeeb548106136fef9c669dd (diff) | |
download | llvm-6a114505c433a830a58cd379b0df66a9d63f496c.zip llvm-6a114505c433a830a58cd379b0df66a9d63f496c.tar.gz llvm-6a114505c433a830a58cd379b0df66a9d63f496c.tar.bz2 |
Temporarily xfail test case which broke after a fix in SCEV
This should keep the buildbots quite while we decide how to update the test
case.
llvm-svn: 271169
-rw-r--r-- | polly/test/ScopInfo/wraping_signed_expr_1.ll | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/polly/test/ScopInfo/wraping_signed_expr_1.ll b/polly/test/ScopInfo/wraping_signed_expr_1.ll index 6cbaf42..13cd481 100644 --- a/polly/test/ScopInfo/wraping_signed_expr_1.ll +++ b/polly/test/ScopInfo/wraping_signed_expr_1.ll @@ -1,5 +1,10 @@ ; RUN: opt %loadPolly -polly-scops -analyze < %s | FileCheck %s ; +; XFAIL: * +; +; This failed after rL271151 as SCEV does not any more derive a NSW flag here. +; TODO: We need to understand what we want to test after this change. +; ; void f(long *A, long N, long p) { ; for (long i = 0; i < N; i++) ; A[i + 1] = 0; |