[llvm] r362684 - [AVR] Fix the 'load.ll' test after r362351

Dylan McKay via llvm-commits llvm-commits at lists.llvm.org
Thu Jun 6 01:06:50 PDT 2019


Author: dylanmckay
Date: Thu Jun  6 01:06:50 2019
New Revision: 362684

URL: http://llvm.org/viewvc/llvm-project?rev=362684&view=rev
Log:
[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.

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

Modified: llvm/trunk/test/CodeGen/AVR/load.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/AVR/load.ll?rev=362684&r1=362683&r2=362684&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/AVR/load.ll (original)
+++ llvm/trunk/test/CodeGen/AVR/load.ll Thu Jun  6 01:06:50 2019
@@ -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




More information about the llvm-commits mailing list