[llvm] r365108 - [AVR] Fix tests after r363757

Dylan McKay via llvm-commits llvm-commits at lists.llvm.org
Wed Jul 3 23:12:48 PDT 2019


Author: dylanmckay
Date: Wed Jul  3 23:12:47 2019
New Revision: 365108

URL: http://llvm.org/viewvc/llvm-project?rev=365108&view=rev
Log:
[AVR] Fix tests after r363757

r363757 renamed ExpandISelPseudo to FinalizeISel, so the RUN line in
select-must-add-unconditional-jump.mir needed updating to refer to finalize-isel.

Modified:
    llvm/trunk/test/CodeGen/AVR/select-must-add-unconditional-jump.ll

Modified: llvm/trunk/test/CodeGen/AVR/select-must-add-unconditional-jump.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/AVR/select-must-add-unconditional-jump.ll?rev=365108&r1=365107&r2=365108&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/AVR/select-must-add-unconditional-jump.ll (original)
+++ llvm/trunk/test/CodeGen/AVR/select-must-add-unconditional-jump.ll Wed Jul  3 23:12:47 2019
@@ -1,4 +1,4 @@
-; RUN: llc -march=avr -print-after=expand-isel-pseudos -cgp-freq-ratio-to-skip-merge=10 < %s 2>&1 | FileCheck %s
+; RUN: llc -march=avr -print-after=finalize-isel -cgp-freq-ratio-to-skip-merge=10 < %s 2>&1 | FileCheck %s
 
 ; Because `switch` seems to trigger Machine Basic Blocks to be ordered
 ; in a different order than they were constructed, this exposes an




More information about the llvm-commits mailing list