diff options
Diffstat (limited to 'llvm/test/CodeGen/PowerPC/coalesce-ext.ll')
-rw-r--r-- | llvm/test/CodeGen/PowerPC/coalesce-ext.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/PowerPC/coalesce-ext.ll b/llvm/test/CodeGen/PowerPC/coalesce-ext.ll index 253df9d0a18..c3a16733af3 100644 --- a/llvm/test/CodeGen/PowerPC/coalesce-ext.ll +++ b/llvm/test/CodeGen/PowerPC/coalesce-ext.ll @@ -9,10 +9,10 @@ define i32 @test1sext(i64 %A, i64 %B, i32* %P, i64 *%P2) nounwind { %F = ashr i64 %E, 32 ; CHECK: extsw [[EXT:r[0-9]+]], [[SUM]] store volatile i64 %F, i64 *%P2 - ; CHECK: std [[EXT]] + ; CHECK-DAG: std [[EXT]] store volatile i32 %D, i32* %P ; Reuse low bits of extended register, don't extend live range of SUM. - ; CHECK: stw [[EXT]] + ; CHECK-DAG: stw [[SUM]] %R = add i32 %D, %D ret i32 %R } |