From 6b6e38d9b1a0c2bcb5243035ba7488a670403e5f Mon Sep 17 00:00:00 2001 From: Michael Kruse Date: Fri, 26 Aug 2016 15:43:43 +0000 Subject: [PATCH] Add "New access function" to update_check.py classifier. Lines with this prefix are printed by JSONImporter. llvm-svn: 279825 --- polly/test/update_check.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/polly/test/update_check.py b/polly/test/update_check.py index 168f3a9..69aa06c 100644 --- a/polly/test/update_check.py +++ b/polly/test/update_check.py @@ -168,6 +168,8 @@ def classyfier1(lines): yield {'TransitiveClosureDep','DepInfo'} line = i.__next__() continue + elif line.startswith("New access function '"): + yield {'NewAccessFunction'} else: yield set() line = i.__next__() -- 2.7.4