Clarify that the "integer" in primitive types is affine integer, not to be confused with IntegerType.

PiperOrigin-RevId: 205688085
This commit is contained in:
MLIR Team 2018-07-23 10:54:07 -07:00 committed by jpienaar
parent 0816c186fd
commit d600a89391
1 changed files with 2 additions and 2 deletions

View File

@ -113,8 +113,8 @@ inline raw_ostream &operator<<(raw_ostream &os, const Type &type) {
return os;
}
/// Primitive types are the atomic base of the type system, including integer
/// and floating point values.
/// Primitive types are the atomic base of the type system, including affine
/// integer and floating point values.
class PrimitiveType : public Type {
public:
static PrimitiveType *get(Kind kind, MLIRContext *context);