You've already forked linux-packaging-mono
Imported Upstream version 5.18.0.246
Former-commit-id: 0c7ce5b1a7851e13f22acfd379b7f9fb304e4833
This commit is contained in:
parent
a7724cd563
commit
279aa8f685
16
external/llvm/test/CodeGen/ARM/v6m-umul-with-overflow.ll
vendored
Normal file
16
external/llvm/test/CodeGen/ARM/v6m-umul-with-overflow.ll
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
; RUN: llc < %s -mtriple=thumbv6m-none-eabi | FileCheck %s
|
||||
|
||||
define i1 @unsigned_multiplication_did_overflow(i32, i32) {
|
||||
; CHECK-LABEL: unsigned_multiplication_did_overflow:
|
||||
entry-block:
|
||||
%2 = tail call { i32, i1 } @llvm.umul.with.overflow.i32(i32 %0, i32 %1)
|
||||
%3 = extractvalue { i32, i1 } %2, 1
|
||||
ret i1 %3
|
||||
|
||||
; CHECK: mov{{s?}} r2, r1
|
||||
; CHECK: mov{{s?}} r1, #0
|
||||
; CHECK: mov{{s?}} r3, {{#0|r1}}
|
||||
; CHECK: bl __aeabi_lmul
|
||||
}
|
||||
|
||||
declare { i32, i1 } @llvm.umul.with.overflow.i32(i32, i32)
|
Reference in New Issue
Block a user