OSDN Git Service

[AVR] Fix the test suite after r326500.
authorDylan McKay <me@dylanmckay.io>
Mon, 5 Mar 2018 20:56:25 +0000 (20:56 +0000)
committerDylan McKay <me@dylanmckay.io>
Mon, 5 Mar 2018 20:56:25 +0000 (20:56 +0000)
r326500 subtly changed the way the instructions are printed.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@326742 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/AVR/zext.ll

index 1f679c9..c95ad03 100644 (file)
@@ -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
 }