diff options
author | Dan Gohman <gohman@apple.com> | 2011-10-24 17:45:02 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2011-10-24 17:45:02 +0000 |
commit | 8c2d270ae8b460912633883f24346c0763373a56 (patch) | |
tree | 93fbeaa63083cb5a12fe4091f698fe296a361695 /test/CodeGen/MBlaze/div.ll | |
parent | 1028132b90a10a46c87b2ee2ad0156e2f9143c25 (diff) | |
download | external_llvm-8c2d270ae8b460912633883f24346c0763373a56.zip external_llvm-8c2d270ae8b460912633883f24346c0763373a56.tar.gz external_llvm-8c2d270ae8b460912633883f24346c0763373a56.tar.bz2 |
Change the default scheduler from Latency to ILP, since Latency
is going away.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142810 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/MBlaze/div.ll')
-rw-r--r-- | test/CodeGen/MBlaze/div.ll | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/test/CodeGen/MBlaze/div.ll b/test/CodeGen/MBlaze/div.ll index fae9830..621784a 100644 --- a/test/CodeGen/MBlaze/div.ll +++ b/test/CodeGen/MBlaze/div.ll @@ -13,14 +13,14 @@ define i8 @test_i8(i8 %a, i8 %b) { ; FUN-NOT: idiv ; FUN: brlid ; DIV-NOT: brlid - ; DIV: idivu + ; DIV: idiv %tmp.2 = sdiv i8 %a, %b ; FUN-NOT: idiv ; FUN: brlid ; DIV-NOT: brlid - ; DIV-NOT: idivu - ; DIV: idiv + ; DIV-NOT: idiv + ; DIV: idivu %tmp.3 = add i8 %tmp.1, %tmp.2 ret i8 %tmp.3 @@ -36,14 +36,14 @@ define i16 @test_i16(i16 %a, i16 %b) { ; FUN-NOT: idiv ; FUN: brlid ; DIV-NOT: brlid - ; DIV: idivu + ; DIV: idiv %tmp.2 = sdiv i16 %a, %b ; FUN-NOT: idiv ; FUN: brlid ; DIV-NOT: brlid - ; DIV-NOT: idivu - ; DIV: idiv + ; DIV-NOT: idiv + ; DIV: idivu %tmp.3 = add i16 %tmp.1, %tmp.2 ret i16 %tmp.3 @@ -59,14 +59,14 @@ define i32 @test_i32(i32 %a, i32 %b) { ; FUN-NOT: idiv ; FUN: brlid ; DIV-NOT: brlid - ; DIV: idivu + ; DIV: idiv %tmp.2 = sdiv i32 %a, %b ; FUN-NOT: idiv ; FUN: brlid ; DIV-NOT: brlid - ; DIV-NOT: idivu - ; DIV: idiv + ; DIV-NOT: idiv + ; DIV: idivu %tmp.3 = add i32 %tmp.1, %tmp.2 ret i32 %tmp.3 |