Changes in directory llvm/lib/Support:
GraphWriter.cpp updated: 1.8 -> 1.9
---
Log message:
This is a patch to fix a compile error in STLExtras.h, and
a bug in GraphWriter.cpp.
Patch by Florian Brandner
---
Diffs of the changes: (+1 -0)
GraphWriter.cpp |1 +
1 files changed, 1 inserti
Changes in directory llvm/lib/Support:
GraphWriter.cpp updated: 1.7 -> 1.8
---
Log message:
Add possibility to set memory limit for binaries run via libSystem. This
is especially needed for bugpoint. This partly implements PR688:
http://llvm.org/PR688
---
Diffs of the changes: (+4 -4)
G
Changes in directory llvm/lib/Support:
GraphWriter.cpp updated: 1.4 -> 1.5
---
Log message:
Remove a character to avoid line exceeding 80 cols.
---
Diffs of the changes: (+1 -1)
GraphWriter.cpp |2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/lib/Support/GraphWriter.
Changes in directory llvm/lib/Support:
GraphWriter.cpp updated: 1.3 -> 1.4
---
Log message:
For PR797: http://llvm.org/PR797 :
Adjust usage of the ExecuteAndWait function to use the last argument which
is the ErrMsg string. This is necessitated because this function no longer
throws exceptions
Changes in directory llvm/lib/Support:
GraphWriter.cpp updated: 1.1 -> 1.2
---
Log message:
Finegrainify namespacification, minor cleanups
---
Diffs of the changes: (+2 -8)
GraphWriter.cpp | 10 ++
1 files changed, 2 insertions(+), 8 deletions(-)
Index: llvm/lib/Support/GraphWr
Changes in directory llvm/lib/Support:
GraphWriter.cpp added (r1.1)
---
Log message:
For PR801: http://llvm.org/PR801 :
Refactor the Graph writing code to use a common implementation which is
now in lib/Support/GraphWriter.cpp. This completes the PR.
Patch by Anton Korobeynikov. Thanks, Anton!