From 882c43d703cd63889a5541bf8f2c014733cbbbee Mon Sep 17 00:00:00 2001 From: Guillaume Chatelet Date: Thu, 17 Oct 2019 07:49:39 +0000 Subject: [Alignment][NFC] Use Align for TargetFrameLowering/Subtarget Summary: 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: jholewinski, arsenm, dschuff, jyknight, dylanmckay, sdardis, nemanjai, jvesely, nhaehnle, sbc100, jgravelle-google, hiraditya, aheejin, kbarton, fedor.sergeev, asb, rbar, johnrusso, simoncook, apazos, sabuasal, niosHD, jrtc27, MaskRay, zzheng, edward-jones, atanasyan, rogfer01, MartinMosbeck, brucehoult, the_o, PkmX, jocewei, jsji, Jim, lenary, s.egerton, pzheng, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D68993 llvm-svn: 375084 --- llvm/unittests/CodeGen/MachineInstrTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/unittests/CodeGen') diff --git a/llvm/unittests/CodeGen/MachineInstrTest.cpp b/llvm/unittests/CodeGen/MachineInstrTest.cpp index b94763a06b5..d48297734e1 100644 --- a/llvm/unittests/CodeGen/MachineInstrTest.cpp +++ b/llvm/unittests/CodeGen/MachineInstrTest.cpp @@ -35,7 +35,7 @@ public: class BogusFrameLowering : public TargetFrameLowering { public: BogusFrameLowering() - : TargetFrameLowering(TargetFrameLowering::StackGrowsDown, 4, 4) {} + : TargetFrameLowering(TargetFrameLowering::StackGrowsDown, Align(4), 4) {} void emitPrologue(MachineFunction &MF, MachineBasicBlock &MBB) const override {} -- cgit v1.2.3