diff options
author | Jakub Kuderski <kubakuderski@gmail.com> | 2017-08-16 00:18:39 +0000 |
---|---|---|
committer | Jakub Kuderski <kubakuderski@gmail.com> | 2017-08-16 00:18:39 +0000 |
commit | 8fb57125b0653b23e397559ef665c9ed6dad4259 (patch) | |
tree | b4357f760c342786a95b9d4dcf71d45462bacaae | |
parent | 647b482c1e32cede15da06beeb9c7a153e6f75a8 (diff) | |
download | bcm5719-llvm-8fb57125b0653b23e397559ef665c9ed6dad4259.tar.gz bcm5719-llvm-8fb57125b0653b23e397559ef665c9ed6dad4259.zip |
[Polly] XFAIL ReportLoopHasNoExit tests after r310940
ReportLoopHasNoExit started failing after r310940 that added
infinite loops to postdominators. The change made regions not
contain infinite loops anymore.
This patch unbreaks the polly tree by XFAILING the
ReportLoopHasNoExit test. Full fix is under review in D36776.
llvm-svn: 310980
-rw-r--r-- | polly/test/ScopDetectionDiagnostics/ReportLoopHasNoExit.ll | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/polly/test/ScopDetectionDiagnostics/ReportLoopHasNoExit.ll b/polly/test/ScopDetectionDiagnostics/ReportLoopHasNoExit.ll index 979c339658f..5ec99cf12fe 100644 --- a/polly/test/ScopDetectionDiagnostics/ReportLoopHasNoExit.ll +++ b/polly/test/ScopDetectionDiagnostics/ReportLoopHasNoExit.ll @@ -1,3 +1,9 @@ +; XFAIL: * + +; The test case stopped making sense after r310940 that added infinite loops to +; the PostDominatorTree. Infinite loops are postdominated ony by the virtual +; root, which causes them not to appear in regions in ScopDetection anymore. + ; RUN: opt %loadPolly -pass-remarks-missed="polly-detect" -polly-allow-nonaffine-loops -analyze -polly-detect < %s 2>&1 | FileCheck %s ; RUN: opt %loadPolly -pass-remarks-missed="polly-detect" -polly-allow-nonaffine-loops=false -analyze -polly-detect < %s 2>&1 | FileCheck %s |