1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 12:33:33 +02:00

[AVR] Fix the test suite after r326500.

r326500 subtly changed the way the instructions are printed.

llvm-svn: 326742
This commit is contained in:
Dylan McKay 2018-03-05 20:56:25 +00:00
parent b6b482980d
commit 0721b583b8

View 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
}