Skip to content
Snippets Groups Projects
Commit ffca14f7 authored by Andre Maroneze's avatar Andre Maroneze
Browse files

[machdep] fixes description of fields in schema

parent 9de268ea
No related branches found
No related tags found
No related merge requests found
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
"type" : "string" "type" : "string"
}, },
"cpp_arch_flags": { "cpp_arch_flags": {
"description": "argument to be given to compiler when this machdep is selected", "description": "arguments to be given to the compiler when this machdep is selected (e.g. '-m32')",
"type" : "string" "type" : "string"
}, },
"sizeof_short": { "sizeof_short": {
...@@ -48,15 +48,15 @@ ...@@ -48,15 +48,15 @@
"type": "integer" "type": "integer"
}, },
"sizeof_void": { "sizeof_void": {
"description": "size of 'void' type. Negative if unsupported", "description": "(non-standard) size of 'void' type. Negative if unsupported",
"type": "integer" "type": "integer"
}, },
"sizeof_fun": { "sizeof_fun": {
"description": "size of a function type. Negative if unsupported", "description": "(non-standard) size of a function type. Negative if unsupported",
"type": "integer" "type": "integer"
}, },
"size_t": { "size_t": {
"description": "type of sizeof e", "description": "type of 'sizeof e'",
"type": "string" "type": "string"
}, },
"wchar_t": { "wchar_t": {
...@@ -104,11 +104,11 @@ ...@@ -104,11 +104,11 @@
"type": "integer" "type": "integer"
}, },
"alignof_void": { "alignof_void": {
"description": "alignment of 'void' type. Negative if unsupported", "description": "(non-standard) alignment of 'void' type. Negative if unsupported",
"type": "integer" "type": "integer"
}, },
"alignof_fun": { "alignof_fun": {
"description": "alignment of a function type. Negative if unsupported", "description": "(non-standard) alignment of a function type. Negative if unsupported",
"type": "integer" "type": "integer"
}, },
"char_is_unsigned": { "char_is_unsigned": {
...@@ -120,7 +120,7 @@ ...@@ -120,7 +120,7 @@
"type" : "boolean" "type" : "boolean"
}, },
"alignof_aligned": { "alignof_aligned": {
"description": "alignement of a type with aligned attribute", "description": "alignment of a type with 'aligned' attribute",
"type" : "integer" "type" : "integer"
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment