diff options
author | Matthias Braun <matze@braunis.de> | 2016-06-25 00:23:00 +0000 |
---|---|---|
committer | Matthias Braun <matze@braunis.de> | 2016-06-25 00:23:00 +0000 |
commit | f011e371810ab1e664c2051fbe073ad1c7904a2e (patch) | |
tree | 37d2603f61d542bdef0c41a2a40c3cbe95b079d7 /test/CodeGen/PowerPC/ppc64-byval-align.ll | |
parent | c1fd19fd0b89b4755207c62dfe8c2ef991cbb250 (diff) |
MachineScheduler: Fully compare top/bottom candidates
In bidirectional scheduling this gives more stable results than just
comparing the "reason" fields of the top/bottom node because the reason
field may be higher depending on what other nodes are in the queue.
Differential Revision: http://reviews.llvm.org/D19401
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@273755 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/PowerPC/ppc64-byval-align.ll')
-rw-r--r-- | test/CodeGen/PowerPC/ppc64-byval-align.ll | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/CodeGen/PowerPC/ppc64-byval-align.ll b/test/CodeGen/PowerPC/ppc64-byval-align.ll index 7170f590658..89e7cc6c50e 100644 --- a/test/CodeGen/PowerPC/ppc64-byval-align.ll +++ b/test/CodeGen/PowerPC/ppc64-byval-align.ll @@ -35,8 +35,7 @@ entry: ret i64 %0 } ; CHECK-LABEL: @callee2 -; CHECK: ld [[REG:[0-9]+]], 128(1) -; CHECK: mr 3, [[REG]] +; CHECK: ld 3, 128(1) ; CHECK: blr declare i64 @test2(%struct.pad* byval, i32 signext, %struct.test* byval align 16) |