[llvm] r326742 - [AVR] Fix the test suite after r326500.

Dylan McKay via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 5 12:56:25 PST 2018


Author: dylanmckay
Date: Mon Mar  5 12:56:25 2018
New Revision: 326742

URL: http://llvm.org/viewvc/llvm-project?rev=326742&view=rev
Log:
[AVR] Fix the test suite after r326500.

r326500 subtly changed the way the instructions are printed.

Modified:
    llvm/trunk/test/CodeGen/AVR/zext.ll

Modified: llvm/trunk/test/CodeGen/AVR/zext.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/AVR/zext.ll?rev=326742&r1=326741&r2=326742&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/AVR/zext.ll (original)
+++ llvm/trunk/test/CodeGen/AVR/zext.ll Mon Mar  5 12:56:25 2018
@@ -24,7 +24,7 @@ define i16 @zext2(i8 %x, i8 %y) {
 ; clr R25
 define i16 @zext_i1(i1 %x) {
 ; CHECK-LABEL: zext_i1:
-; CHECK: clr r25
+; CHECK: andi r25, 0
   %1 = zext i1 %x to i16
   ret i16 %1
 }




More information about the llvm-commits mailing list