From 48904e9452de81375bd55d830d08e51cc8f2ec7e Mon Sep 17 00:00:00 2001 From: Guillaume Chatelet Date: Wed, 11 Sep 2019 11:16:48 +0000 Subject: [Alignment] Use llvm::Align in MachineFunction and TargetLowering - fixes mir parsing Summary: This catches malformed mir files which specify alignment as log2 instead of pow2. See https://reviews.llvm.org/D65945 for reference, This is patch is part of a series to introduce an Alignment type. See this thread for context: http://lists.llvm.org/pipermail/llvm-dev/2019-July/133851.html See this patch for the introduction of the type: https://reviews.llvm.org/D64790 Reviewers: courbet Subscribers: MatzeB, qcolombet, dschuff, arsenm, sdardis, nemanjai, jvesely, nhaehnle, hiraditya, kbarton, asb, rbar, johnrusso, simoncook, apazos, sabuasal, niosHD, jrtc27, MaskRay, zzheng, edward-jones, atanasyan, rogfer01, MartinMosbeck, brucehoult, the_o, PkmX, jocewei, jsji, Petar.Avramovic, asbirlea, s.egerton, pzheng, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D67433 llvm-svn: 371608 --- llvm/test/CodeGen/X86/GlobalISel/select-undef.mir | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'llvm/test/CodeGen/X86/GlobalISel/select-undef.mir') diff --git a/llvm/test/CodeGen/X86/GlobalISel/select-undef.mir b/llvm/test/CodeGen/X86/GlobalISel/select-undef.mir index ec9a970a31b..dddebf209bf 100644 --- a/llvm/test/CodeGen/X86/GlobalISel/select-undef.mir +++ b/llvm/test/CodeGen/X86/GlobalISel/select-undef.mir @@ -17,7 +17,7 @@ ... --- name: test -alignment: 4 +alignment: 16 legalized: true regBankSelected: true registers: @@ -39,7 +39,7 @@ body: | ... --- name: test2 -alignment: 4 +alignment: 16 legalized: true regBankSelected: true registers: @@ -69,7 +69,7 @@ body: | ... --- name: test3 -alignment: 4 +alignment: 16 legalized: true regBankSelected: true tracksRegLiveness: true -- cgit v1.2.1