This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 20350be310e [cmake] Enable reverse iteration by default through build macro new 2144c5262ff CodeGen: Refactor MIR parsing
The 1 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/CodeGen/MIRParser/MIRParser.h | 20 +-- include/llvm/CodeGen/MachineFunctionInitializer.h | 38 ------ include/llvm/CodeGen/MachineModuleInfo.h | 15 +-- include/llvm/Target/TargetMachine.h | 7 +- lib/CodeGen/LLVMTargetMachine.cpp | 10 +- lib/CodeGen/MIRParser/MIRParser.cpp | 136 ++++++++++++--------- lib/CodeGen/MachineFunction.cpp | 3 - lib/CodeGen/MachineFunctionPass.cpp | 2 +- lib/CodeGen/MachineModuleInfo.cpp | 14 ++- lib/CodeGen/MachineOutliner.cpp | 6 +- .../AArch64/generic-virtual-registers-error.mir | 1 - ...eneric-virtual-registers-with-regbank-error.mir | 1 - .../Generic/function-missing-machine-function.mir | 13 -- test/CodeGen/MIR/X86/empty0.mir | 6 + test/CodeGen/MIR/X86/empty1.mir | 8 ++ test/CodeGen/MIR/X86/empty2.mir | 8 ++ tools/llc/llc.cpp | 5 +- unittests/MI/LiveIntervalTest.cpp | 10 +- unittests/Target/AArch64/InstSizes.cpp | 11 +- 19 files changed, 147 insertions(+), 167 deletions(-) delete mode 100644 include/llvm/CodeGen/MachineFunctionInitializer.h delete mode 100644 test/CodeGen/MIR/Generic/function-missing-machine-function.mir create mode 100644 test/CodeGen/MIR/X86/empty0.mir create mode 100644 test/CodeGen/MIR/X86/empty1.mir create mode 100644 test/CodeGen/MIR/X86/empty2.mir