mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-02 16:56:39 +00:00
Adjust to new itf
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12534 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
62fe9b59c1
commit
db81395452
@ -62,8 +62,8 @@ ConstantRange::ConstantRange(const Type *Ty, bool Full) {
|
||||
/// Lower==Upper and Lower != Min or Max for its type (or if the two constants
|
||||
/// have different types)
|
||||
///
|
||||
ConstantRange::ConstantRange(ConstantIntegral *L,
|
||||
ConstantIntegral *U) : Lower(L), Upper(U) {
|
||||
ConstantRange::ConstantRange(Constant *L, Constant *U)
|
||||
: Lower(cast<ConstantIntegral>(L)), Upper(cast<ConstantIntegral>(U)) {
|
||||
assert(Lower->getType() == Upper->getType() &&
|
||||
"Incompatible types for ConstantRange!");
|
||||
|
||||
|
@ -62,8 +62,8 @@ ConstantRange::ConstantRange(const Type *Ty, bool Full) {
|
||||
/// Lower==Upper and Lower != Min or Max for its type (or if the two constants
|
||||
/// have different types)
|
||||
///
|
||||
ConstantRange::ConstantRange(ConstantIntegral *L,
|
||||
ConstantIntegral *U) : Lower(L), Upper(U) {
|
||||
ConstantRange::ConstantRange(Constant *L, Constant *U)
|
||||
: Lower(cast<ConstantIntegral>(L)), Upper(cast<ConstantIntegral>(U)) {
|
||||
assert(Lower->getType() == Upper->getType() &&
|
||||
"Incompatible types for ConstantRange!");
|
||||
|
||||
|
@ -62,8 +62,8 @@ ConstantRange::ConstantRange(const Type *Ty, bool Full) {
|
||||
/// Lower==Upper and Lower != Min or Max for its type (or if the two constants
|
||||
/// have different types)
|
||||
///
|
||||
ConstantRange::ConstantRange(ConstantIntegral *L,
|
||||
ConstantIntegral *U) : Lower(L), Upper(U) {
|
||||
ConstantRange::ConstantRange(Constant *L, Constant *U)
|
||||
: Lower(cast<ConstantIntegral>(L)), Upper(cast<ConstantIntegral>(U)) {
|
||||
assert(Lower->getType() == Upper->getType() &&
|
||||
"Incompatible types for ConstantRange!");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user