class AdLint::Cc1::IntType
Public Class Methods
new(type_tbl)
click to toggle source
Calls superclass method
AdLint::Cc1::IntegerType::new
# File lib/adlint/cc1/type.rb, line 4081 def initialize(type_tbl) # FIXME: StandardTypesAccessor is not ready until @type_table is # initialized. @type_table = type_tbl super(type_tbl, "int", int_size, int_alignment, true, false) end
Public Instance Methods
arithmetic_type_with(type)
click to toggle source
# File lib/adlint/cc1/type.rb, line 4096 def arithmetic_type_with(type) type._arithmetic_type_with_int(self) end
corresponding_signed_type()
click to toggle source
# File lib/adlint/cc1/type.rb, line 4100 def corresponding_signed_type signed_int_t end
corresponding_unsigned_type()
click to toggle source
# File lib/adlint/cc1/type.rb, line 4104 def corresponding_unsigned_type unsigned_int_t end
id()
click to toggle source
# File lib/adlint/cc1/type.rb, line 4088 def id @id ||= IntTypeId.new end
integer_conversion_rank()
click to toggle source
# File lib/adlint/cc1/type.rb, line 4092 def integer_conversion_rank 3 end