search for: fixedstr

Displaying 3 results from an estimated 3 matches for "fixedstr".

Did you mean: filestr
2012 Sep 07
1
[LLVMdev] teaching FileCheck to handle variations in order
...MatchCurrent, + MatchEndOfFile + }; + +private: SMLoc PatternLoc; - /// MatchEOF - When set, this pattern only matches the end of file. This is - /// used for trailing CHECK-NOTs. - bool MatchEOF; + /// MatchType - When set to ... + /// MatchStr, this pattern matches according to FixedStr or RegExStr. + /// MatchCurrent, this pattern matches (the empty string at) the current + /// position. This is used for CHECK-PUSHes without preceding CHECKs. + /// MatchEndOfFile, this pattern only matches the end of file. This is used + /// for trailing CHECK-NOTs. + enum MatchT...
2012 Sep 07
5
[LLVMdev] teaching FileCheck to handle variations in order
...MatchCurrent, + MatchEndOfFile + }; + +private: SMLoc PatternLoc; - /// MatchEOF - When set, this pattern only matches the end of file. This is - /// used for trailing CHECK-NOTs. - bool MatchEOF; + /// MatchType - When set to ... + /// MatchStr, this pattern matches according to FixedStr or RegExStr. + /// MatchCurrent, this pattern matches (the empty string at) the current + /// position. This is used for CHECK-PUSHes without preceding CHECKs. + /// MatchEndOfFile, this pattern only matches the end of file. This is used + /// for trailing CHECK-NOTs. + enum MatchT...
2012 Sep 07
0
[LLVMdev] teaching FileCheck to handle variations in order
On 9/7/2012 7:20 AM, Matthew Curtis wrote: > > The attached patch implements one possible solution. It introduces a > position stack and a couple of directives: > > * 'CHECK-PUSH:' pushes the current match position onto the stack. > * 'CHECK-POP:' pops the top value off of the stack and uses it to set > the current match position. > > The above