diff options
author | Dylan McKay <me@dylanmckay.io> | 2018-03-05 20:56:25 +0000 |
---|---|---|
committer | Dylan McKay <me@dylanmckay.io> | 2018-03-05 20:56:25 +0000 |
commit | 6119b79a8896cf682d9b94e29741effbf2e8ddd2 (patch) | |
tree | 0b6070cfcb40701a6c1ffff8d5d6d07733f2bb3d /llvm/test/CodeGen/AVR | |
parent | 9c1526e75cc311f66ec793945561ab1b4deab84e (diff) | |
download | bcm5719-llvm-6119b79a8896cf682d9b94e29741effbf2e8ddd2.tar.gz bcm5719-llvm-6119b79a8896cf682d9b94e29741effbf2e8ddd2.zip |
[AVR] Fix the test suite after r326500.
r326500 subtly changed the way the instructions are printed.
llvm-svn: 326742
Diffstat (limited to 'llvm/test/CodeGen/AVR')
-rw-r--r-- | llvm/test/CodeGen/AVR/zext.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/AVR/zext.ll b/llvm/test/CodeGen/AVR/zext.ll index 1f679c9d524..c95ad03053c 100644 --- a/llvm/test/CodeGen/AVR/zext.ll +++ b/llvm/test/CodeGen/AVR/zext.ll @@ -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 } |