Changes in directory llvm/lib/Transforms/Utils:
LowerInvoke.cpp updated: 1.58 -> 1.59
---
Log message:
Comment out usage of write() for now.
---
Diffs of the changes: (+6 -0)
LowerInvoke.cpp |6 ++
1 files changed, 6 insertions(+)
Index: llvm/lib/Transforms/Utils/LowerInvoke.cpp
d
Changes in directory llvm/lib/Transforms/Utils:
LowerInvoke.cpp updated: 1.56 -> 1.57
---
Log message:
Revert changes for a simplier solution.
---
Diffs of the changes: (+36 -50)
LowerInvoke.cpp | 86 +++-
1 files changed, 36 insertions(
Changes in directory llvm/lib/Transforms/Utils:
LowerInvoke.cpp updated: 1.55 -> 1.56
---
Log message:
Itanium ABI exception handing support.
---
Diffs of the changes: (+50 -36)
LowerInvoke.cpp | 86
1 files changed, 50 insertions(+
Changes in directory llvm/lib/Transforms/Utils:
LowerInvoke.cpp updated: 1.54 -> 1.55
---
Log message:
eliminate use of deprecated apis
---
Diffs of the changes: (+2 -2)
LowerInvoke.cpp |4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm/lib/Transforms/Utils/LowerIn
Changes in directory llvm/lib/Transforms/Utils:
LowerInvoke.cpp updated: 1.52 -> 1.53
---
Log message:
stop using methods that take vectors.
---
Diffs of the changes: (+4 -3)
LowerInvoke.cpp |7 ---
1 files changed, 4 insertions(+), 3 deletions(-)
Index: llvm/lib/Transforms/Utils
Changes in directory llvm/lib/Transforms/Utils:
LowerInvoke.cpp updated: 1.50 -> 1.51
---
Log message:
For PR1163: http://llvm.org/PR1163 :
Make the Module's dependent library use a std::vector instead of SetVector
adjust #includes in .cpp files because SetVector.h is no longer included.
---
Changes in directory llvm/lib/Transforms/Utils:
LowerInvoke.cpp updated: 1.40 -> 1.41
---
Log message:
Fix Duraid's changes to work when TLI is null. This fixes the failing
lowerinvoke regtests.
---
Diffs of the changes: (+7 -3)
LowerInvoke.cpp | 10 +++---
1 files changed, 7 inser
Changes in directory llvm/lib/Transforms/Utils:
LowerInvoke.cpp updated: 1.39 -> 1.40
---
Log message:
add setJumpBufSize() and setJumpBufAlignment() to target-lowering.
Call these from your backend to enjoy setjmp/longjmp goodness, see
lib/Target/IA64/IA64ISelLowering.cpp for an example
--