diff options
author | Renato Golin <renato.golin@linaro.org> | 2016-03-03 08:57:44 +0000 |
---|---|---|
committer | Renato Golin <renato.golin@linaro.org> | 2016-03-03 08:57:44 +0000 |
commit | 3d78271eacf88f9ceed2bab446942077c868aeb5 (patch) | |
tree | b4da5a0d3986d43a75f0057a9d630e3631216463 /llvm/test/CodeGen/ARM/divmod-eabi.ll | |
parent | abbe34bce65b74ad23b4304eb180691d8685f6a0 (diff) | |
download | bcm5719-llvm-3d78271eacf88f9ceed2bab446942077c868aeb5.tar.gz bcm5719-llvm-3d78271eacf88f9ceed2bab446942077c868aeb5.zip |
Revert "[ARM] Merging 64-bit divmod lib calls into one"
This reverts commit r262507, which broke some ARM buildbots.
llvm-svn: 262594
Diffstat (limited to 'llvm/test/CodeGen/ARM/divmod-eabi.ll')
-rw-r--r-- | llvm/test/CodeGen/ARM/divmod-eabi.ll | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/ARM/divmod-eabi.ll b/llvm/test/CodeGen/ARM/divmod-eabi.ll index 29c7fe0ff86..35f2014317b 100644 --- a/llvm/test/CodeGen/ARM/divmod-eabi.ll +++ b/llvm/test/CodeGen/ARM/divmod-eabi.ll @@ -79,6 +79,7 @@ entry: ret i32 %add2 } +; FIXME: AEABI is not lowering long u/srem into u/ldivmod define i64 @longf(i64 %a, i64 %b) { ; EABI-LABEL: longf: ; DARWIN-LABEL: longf: @@ -86,9 +87,6 @@ entry: %div = sdiv i64 %a, %b %rem = srem i64 %a, %b ; EABI: __aeabi_ldivmod -; EABI-NEXT: adds r0 -; EABI-NEXT: adc r1 -; EABI-NOT: __aeabi_ldivmod ; DARWIN: ___divdi3 ; DARWIN: mov [[div1:r[0-9]+]], r0 ; DARWIN: mov [[div2:r[0-9]+]], r1 |