This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from a1b0287 Add missing -mtriple to MIR test case new af672fb [ARM] Implement execute-only support in CodeGen new 412b80f Allow ELF section flags to be specified numerically
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: .../llvm/CodeGen/TargetLoweringObjectFileImpl.h | 2 +- include/llvm/MC/SectionKind.h | 9 +- include/llvm/Support/ELF.h | 3 + lib/CodeGen/TargetLoweringObjectFileImpl.cpp | 6 ++ lib/MC/MCContext.cpp | 4 +- lib/MC/MCParser/ELFAsmParser.cpp | 7 ++ lib/MC/MCSectionELF.cpp | 2 + lib/ObjectYAML/ELFYAML.cpp | 3 + lib/Target/ARM/ARMAsmPrinter.cpp | 2 + lib/Target/ARM/ARMConstantIslandPass.cpp | 2 +- lib/Target/ARM/ARMISelLowering.cpp | 38 +++++-- lib/Target/ARM/ARMInstrFormats.td | 8 ++ lib/Target/ARM/ARMInstrInfo.td | 2 + lib/Target/ARM/ARMInstrThumb2.td | 4 +- lib/Target/ARM/ARMMCInstLower.cpp | 2 + lib/Target/ARM/ARMSubtarget.cpp | 14 ++- lib/Target/ARM/ARMSubtarget.h | 4 + lib/Target/ARM/ARMTargetObjectFile.cpp | 36 ++++++- lib/Target/ARM/ARMTargetObjectFile.h | 7 ++ lib/Target/ARM/AsmParser/ARMAsmParser.cpp | 3 + lib/Target/ARM/ThumbRegisterInfo.cpp | 8 +- test/CodeGen/ARM/constantfp.ll | 110 +++++++++++++++++++++ test/CodeGen/ARM/execute-only-big-stack-frame.ll | 46 +++++++++ test/CodeGen/ARM/execute-only-section.ll | 23 +++++ test/CodeGen/ARM/execute-only.ll | 82 +++++++++++++++ test/MC/ELF/ARM/execute-only-section.s | 44 +++++++++ test/MC/ELF/section-numeric-flag.s | 37 +++++++ tools/llvm-readobj/ELFDumper.cpp | 8 ++ 28 files changed, 496 insertions(+), 20 deletions(-) create mode 100644 test/CodeGen/ARM/execute-only-big-stack-frame.ll create mode 100644 test/CodeGen/ARM/execute-only-section.ll create mode 100644 test/CodeGen/ARM/execute-only.ll create mode 100644 test/MC/ELF/ARM/execute-only-section.s create mode 100644 test/MC/ELF/section-numeric-flag.s