Reset the system compiler each time we start a new flavour. Otherwise
[oota-llvm.git] / utils / FileCheck /
2011-10-16 Chris LattnerMake SMDiagnostic a little more sane. Instead of passi...
2011-10-16 Chris LattnerEnhance llvm::SourceMgr to support diagnostic ranges...
2011-04-09 Chris Lattnerfix PR9629 - We were lowering regexes like a{{b|c}...
2011-04-09 Chris Lattnervarious cleanups, no functionality change.
2011-02-20 Oscar FuentesPut targets on folders, if the IDE supports the feature.
2011-02-09 Chris Lattneremit a specific error when the input file is empty...
2010-12-16 Michael J. SpencerMemoryBuffer now return an error_code and returns a...
2010-12-09 Michael J. SpencerSupport/MemoryBuffer: Replace all uses of std::string...
2010-11-29 Michael J. SpencerMerge System into Support.
2010-11-14 NAKAMURA TakumiFileCheck: Eliminate DOSish \r from input file.
2010-10-15 Jakob Stoklund OlesenTeach FileCheck to handle trailing CHECK-NOT patterns.
2010-08-20 Mikhail GlushenkovTrailing whitespace.
2010-04-05 Chris Lattnerstringref-ize the MemoryBuffer::get apis. This requires
2010-03-19 Daniel DunbarFileCheck: Don't print "possibly intended match" line...
2010-01-30 Daniel DunbarFileCheck: When looking for "possible matches", only...
2010-01-29 Dan GohmanMinor code cleanup.
2010-01-29 Dan GohmanSkip whitespace when looking for a potential intended...
2010-01-29 Dan GohmanFix the position of the caret in the FileCheck error...
2010-01-29 Daniel DunbarFileCheck: Switch "possible match" calculation to use...
2009-11-29 Daniel DunbarFix FileCheck crash when fuzzy scanning starting at...
2009-11-22 Daniel DunbarFileCheck, PR5239: Try to find the intended match on...
2009-11-22 Daniel DunbarFileCheck: When a string using variable references...
2009-11-22 Daniel DunbarAllow '_' in FileCheck variable names, it is nice to...
2009-09-27 Chris Lattnerimplement and document support for filecheck variables...
2009-09-26 Chris Lattnerremove support for "NoSub" from regex. It seems like...
2009-09-25 Chris Lattnerreject attempts to use ()'s in patterns, these are...
2009-09-25 Chris Lattnerreimplement the regex matching strategy by building...
2009-09-25 Chris Lattnerspecial case Patterns that are a single fixed string...
2009-09-25 Chris Lattnerfilecheck should not match a \n with a .
2009-09-25 Chris Lattnerturn a std::pair into a real class.
2009-09-24 Chris Lattneradd and document regex support for FileCheck. You...
2009-09-24 Chris LattnerUse CanonicalizeInputFile to canonicalize the entire...
2009-09-24 Chris Lattnerchange 'not' matching to use Pattern, move pattern...
2009-09-24 Chris Lattnerrefactor out the match string into its own Pattern...
2009-09-21 Chris Lattnerfix a FileCheck bug where:
2009-09-20 Chris Lattnerrewrite CountNumNewlinesBetween to be in terms of Strin...
2009-09-20 Chris Lattnerimplement and document support for CHECK-NOT
2009-09-20 Chris Lattnerrewrite FileCheck in terms of StringRef instead of...
2009-08-23 Douglas GregorDon't install FileCheck or FileUpdate
2009-08-16 Chris Lattnerwhen emitting errors about CHECK-NEXT directives, show...
2009-08-15 Chris Lattnerimplement support for CHECK-NEXT: in filecheck.
2009-08-15 Chris Lattnersimplify some code.
2009-08-15 Chris Lattnerrewrite FindStringInBuffer to use an explicit loop...
2009-08-15 Chris LattnerInstead of using an std::pair, use a custom struct.
2009-08-02 Daniel DunbarFix an ENABLE_EXPENSIVE_CHECKS error.
2009-07-11 Daniel DunbarTweak comment.
2009-07-11 Chris Lattnerimprove filecheck's "scanning from here" caret position.
2009-07-11 Chris Lattnermake filecheck default to canonicalizing horizontal...
2009-07-09 Chris Lattnerstop on the first file mismatch.
2009-07-08 Chris LattnerAdd a new little "FileCheck" utility for regression...