diff options
author | Dylan McKay <me@dylanmckay.io> | 2019-06-06 08:06:50 +0000 |
---|---|---|
committer | Dylan McKay <me@dylanmckay.io> | 2019-06-06 08:06:50 +0000 |
commit | 3c82c57d2b50c6d7ac69e4d69c8914a02eeda0b7 (patch) | |
tree | 469ec362b35d4115832efd2fb95fe5fc998944bb | |
parent | 0d02dc60542f7ba2e0ac19220350e8e097ab6d0a (diff) | |
download | bcm5719-llvm-3c82c57d2b50c6d7ac69e4d69c8914a02eeda0b7.tar.gz bcm5719-llvm-3c82c57d2b50c6d7ac69e4d69c8914a02eeda0b7.zip |
[AVR] Fix the 'load.ll' test after r362351
In that commit, the 'load.ll' test was modified, but still failed.
This commit updates the test so that it now passes.
llvm-svn: 362684
-rw-r--r-- | llvm/test/CodeGen/AVR/load.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/AVR/load.ll b/llvm/test/CodeGen/AVR/load.ll index ac5691376cb..dbadacfd5e0 100644 --- a/llvm/test/CodeGen/AVR/load.ll +++ b/llvm/test/CodeGen/AVR/load.ll @@ -45,9 +45,9 @@ define i16 @load16disp(i16* %x) { define i16 @load16nodisp(i16* %x) { ; CHECK-LABEL: load16nodisp: +; CHECK: subi r24, 192 +; CHECK: sbci r25, 255 ; CHECK: movw r30, r24 -; CHECK: subi r30, 192 -; CHECK: sbci r31, 255 ; CHECK: ld r24, [[PTR:[YZ]]] ; CHECK: ldd r25, [[PTR]]+1 %1 = getelementptr inbounds i16, i16* %x, i64 32 |