This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 3e56517 Properly handle short file names on the command line in Windows new fd01540 [safestack] Fixup llvm.dbg.value when rewriting unsafe allocas. new f268616 [safestack] Sink unsafe address computation to each use.
The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/llvm/Transforms/Utils/Local.h | 8 +++ lib/CodeGen/SafeStack.cpp | 40 ++++++++--- lib/Transforms/Utils/Local.cpp | 92 +++++++++++++++++++----- test/Transforms/SafeStack/array-aligned.ll | 7 +- test/Transforms/SafeStack/array.ll | 7 +- test/Transforms/SafeStack/debug-loc-dynamic.ll | 57 +++++++++++++++ test/Transforms/SafeStack/debug-loc2.ll | 98 ++++++++++++++++++++++++++ test/Transforms/SafeStack/phi.ll | 35 +++++++++ test/Transforms/SafeStack/sink-to-use.ll | 22 ++++++ test/Transforms/SafeStack/struct.ll | 7 +- 10 files changed, 334 insertions(+), 39 deletions(-) create mode 100644 test/Transforms/SafeStack/debug-loc-dynamic.ll create mode 100644 test/Transforms/SafeStack/debug-loc2.ll create mode 100644 test/Transforms/SafeStack/phi.ll create mode 100644 test/Transforms/SafeStack/sink-to-use.ll