Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | std::string(NULL,0) asserts in MSVC Debug | Frances Buontempo | 2012-01-03 | 1 | -1/+1 |
| | |||||
* | use re2c to parse depfiles | Evan Martin | 2011-12-07 | 1 | -0/+2 |
| | |||||
* | Add a EditDistance() function based on the one in ↵ | Nico Weber | 2011-11-13 | 1 | -1/+1 |
| | | | | llvm/lib/Support/StringRef.cpp. | ||||
* | use StringPiece for makefile deps | Evan Martin | 2011-09-12 | 1 | -0/+51 |
Because of this, MakefileParser now returns pointers into the source makefile string rather than allocating new strings. Despite needing to take the result and stuff it into a new string anyway to canonicalize it, this takes another 50ms or so off the null Chrome build, likely due to the vector used in MakefileParser changing to a type that doesn't use any allocations. (I also experimented with making the vector reserve an initial size but didn't see any performance impact.) |