Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TagVolatileType (0.33 sec)

  1. src/debug/dwarf/type.go

    			if ok && b == lastFieldByteOffset {
    				// Final field must be zero width. Fix array length.
    				fixups.recordArrayType(lastFieldType)
    			}
    		}
    
    	case TagConstType, TagVolatileType, TagRestrictType:
    		// Type modifier (DWARF v2 ยง5.2)
    		// Attributes:
    		//	AttrType: subtype
    		t := new(QualType)
    		typ = t
    		typeCache[off] = t
    		if t.Type = typeOf(e); err != nil {
    			goto Error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  2. src/debug/dwarf/const.go

    	TagTemplateValueParameter Tag = 0x30
    	TagThrownType             Tag = 0x31
    	TagTryDwarfBlock          Tag = 0x32
    	TagVariantPart            Tag = 0x33
    	TagVariable               Tag = 0x34
    	TagVolatileType           Tag = 0x35
    	// The following are new in DWARF 3.
    	TagDwarfProcedure  Tag = 0x36
    	TagRestrictType    Tag = 0x37
    	TagInterfaceType   Tag = 0x38
    	TagNamespace       Tag = 0x39
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 13.8K bytes
    - Viewed (0)
Back to top