From c1553194a7e8c153f555aaed146aacdfd138f735 Mon Sep 17 00:00:00 2001 From: bjorn3 Date: Mon, 17 Jun 2019 19:51:21 +0200 Subject: [PATCH] Fix WideInt max size in insturctions.py --- cranelift/codegen/src/ir/types.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cranelift/codegen/src/ir/types.rs b/cranelift/codegen/src/ir/types.rs index a5c1a99978..394ec8e024 100644 --- a/cranelift/codegen/src/ir/types.rs +++ b/cranelift/codegen/src/ir/types.rs @@ -10,7 +10,7 @@ use target_lexicon::{PointerWidth, Triple}; /// field is present put no type is needed, such as the controlling type variable for a /// non-polymorphic instruction. /// -/// Basic integer types: `I8`, `I16`, `I32`, and `I64`. These types are sign-agnostic. +/// Basic integer types: `I8`, `I16`, `I32`, `I64`, and `I128`. These types are sign-agnostic. /// /// Basic floating point types: `F32` and `F64`. IEEE single and double precision. ///