From 2f8229eb68fd2e1e0e2bec771562babaf7eea9ec Mon Sep 17 00:00:00 2001 From: Rhys Perry Date: Wed, 19 Dec 2018 22:33:42 +0000 Subject: [PATCH] Fix test commit Seems that was actually a eight space tab... git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@349690 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/GlobalISel/LegalizerInfo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/CodeGen/GlobalISel/LegalizerInfo.cpp b/lib/CodeGen/GlobalISel/LegalizerInfo.cpp index f6afe5ac8a1..fa36ede5b97 100644 --- a/lib/CodeGen/GlobalISel/LegalizerInfo.cpp +++ b/lib/CodeGen/GlobalISel/LegalizerInfo.cpp @@ -585,7 +585,7 @@ const MachineInstr *llvm::machineFunctionIsIllegal(const MachineFunction &MF) { for (const MachineBasicBlock &MBB : MF) for (const MachineInstr &MI : MBB) if (isPreISelGenericOpcode(MI.getOpcode()) && !MLI->isLegal(MI, MRI)) - return &MI; + return &MI; } return nullptr; } -- 2.50.1