| Index: src/IceTypes.h
|
| diff --git a/src/IceTypes.h b/src/IceTypes.h
|
| index f176e9bf92cdb681af778f76871334599b044ecc..f6705e9e5b981e6af5e83fba61d9da4d42478c9c 100644
|
| --- a/src/IceTypes.h
|
| +++ b/src/IceTypes.h
|
| @@ -81,6 +81,14 @@ bool isVectorFloatingType(Type Ty);
|
| /// Returns true if the given type can be used in a load instruction.
|
| bool isLoadStoreType(Type Ty);
|
|
|
| +/// Returns true if the given type can be used as a parameter type in a call.
|
| +bool isCallParameterType(Type Ty);
|
| +
|
| +/// Returns true if the given type can be used as the return type of a call.
|
| +inline bool isCallReturnType(Type Ty) {
|
| + return Ty == IceType_void || isCallParameterType(Ty);
|
| +}
|
| +
|
| /// Returns type generated by applying the compare instructions (icmp and fcmp)
|
| /// to arguments of the given type. Returns IceType_void if compare is not
|
| /// allowed.
|
|
|