diff options
author | Tobias Grosser <tobias@grosser.es> | 2016-11-26 05:08:27 +0000 |
---|---|---|
committer | Tobias Grosser <tobias@grosser.es> | 2016-11-26 05:08:27 +0000 |
commit | 0dcbcaa98b3e882dd38116fbff18f70b27819c9f (patch) | |
tree | abd49786092b75b663ce94ec5a42ce35d3404651 /polly/include | |
parent | 8c21b1a50f50a40e92a3670f379d9b6fc98fe199 (diff) | |
download | bcm5719-llvm-0dcbcaa98b3e882dd38116fbff18f70b27819c9f.tar.gz bcm5719-llvm-0dcbcaa98b3e882dd38116fbff18f70b27819c9f.zip |
[ScopDetectionDiagnostic] IrreducibleRegion is a subclasses of CFG
Reflect this correctly in the RejectReasonKind enum. The definition of
RejectReasonKind::IrreducibleRegion was introduced in r258497, when we started
to refuse regions containing irreducible loops.
llvm-svn: 287965
Diffstat (limited to 'polly/include')
-rw-r--r-- | polly/include/polly/ScopDetectionDiagnostic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/polly/include/polly/ScopDetectionDiagnostic.h b/polly/include/polly/ScopDetectionDiagnostic.h index 0da9d8d93dd..b7d8ae5068f 100644 --- a/polly/include/polly/ScopDetectionDiagnostic.h +++ b/polly/include/polly/ScopDetectionDiagnostic.h @@ -66,8 +66,8 @@ enum class RejectReasonKind { // CFG Category CFG, InvalidTerminator, - LastCFG, IrreducibleRegion, + LastCFG, // Non-Affinity AffFunc, |