You've already forked linux-packaging-mono
Imported Upstream version 5.18.0.205
Former-commit-id: 7f59f7e792705db773f1caecdaa823092f4e2927
This commit is contained in:
parent
5cd5df71cc
commit
8e12397d70
15
external/llvm/test/CodeGen/PowerPC/mul-with-overflow.ll
vendored
Normal file
15
external/llvm/test/CodeGen/PowerPC/mul-with-overflow.ll
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
; RUN: llc -verify-machineinstrs < %s -mtriple=ppc32--
|
||||
|
||||
declare {i32, i1} @llvm.umul.with.overflow.i32(i32 %a, i32 %b)
|
||||
define zeroext i1 @a(i32 %x) nounwind {
|
||||
%res = call {i32, i1} @llvm.umul.with.overflow.i32(i32 %x, i32 3)
|
||||
%obil = extractvalue {i32, i1} %res, 1
|
||||
ret i1 %obil
|
||||
}
|
||||
|
||||
declare {i32, i1} @llvm.smul.with.overflow.i32(i32 %a, i32 %b)
|
||||
define zeroext i1 @b(i32 %x) nounwind {
|
||||
%res = call {i32, i1} @llvm.smul.with.overflow.i32(i32 %x, i32 3)
|
||||
%obil = extractvalue {i32, i1} %res, 1
|
||||
ret i1 %obil
|
||||
}
|
Reference in New Issue
Block a user