fix PR9629 - We were lowering regexes like a{{b|c}}d into ab|cd, which
authorChris Lattner <sabre@nondot.org>
Sat, 9 Apr 2011 06:37:03 +0000 (06:37 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 9 Apr 2011 06:37:03 +0000 (06:37 +0000)
is substantially different than a(b|c)d.  Form the latter regex instead.
This found a few problems in the testsuite, which serves as its test.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129196 91177308-0d34-0410-b5e6-96231b3b80d8

utils/FileCheck/FileCheck.cpp

index 58001b73ab6514b12ca95acc30273186aeb97bae..f2255948658e8847a3c2220cb3baa579c3e7abb4 100644 (file)
@@ -148,8 +148,16 @@ bool Pattern::ParsePattern(StringRef PatternStr, SourceMgr &SM) {
         return true;
       }
 
+      // Enclose {{}} patterns in parens just like [[]] even though we're not
+      // capturing the result for any purpose.  This is required in case the
+      // expression contains an alternation like: CHECK:  abc{{x|z}}def.  We
+      // want this to turn into: "abc(x|z)def" not "abcx|zdef".
+      RegExStr += '(';
+      ++CurParen;
+
       if (AddRegExToRegEx(PatternStr.substr(2, End-2), CurParen, SM))
         return true;
+      RegExStr += ')';
 
       PatternStr = PatternStr.substr(End+2);
       continue;