shithub: scc

Download patch

ref: c9417aaff46fd40b00a1fccb6fee0cdd37611d16
parent: 36fbb9b46ef9beed84eb0f14588c8cebc1c92c81
author: Roberto E. Vargas Caballero <[email protected]>
date: Mon Aug 24 14:11:29 EDT 2015

Fix type typos in cc1/ir.md

--- a/cc1/ir.md
+++ b/cc1/ir.md
@@ -18,12 +18,12 @@
 * C -- char
 * I -- int
 * W -- long
-* Q -- long long
+* O -- long long
 * M -- unsigned char
 * N -- unsigned int
 * Z -- unsigned long
 * Q -- unsigned long long
-* O -- void
+* 0 -- void
 * P -- pointer
 * F -- function
 * V -- vector
@@ -31,8 +31,8 @@
 * S -- struct
 * B -- bool
 * J -- float
-* D -- Double
-* H -- double
+* D -- double
+* H -- long double
 
 This list is built for the original Z80 backend, where 'int'
 had the same size than 'short'. Several types need an identifier
@@ -325,12 +325,12 @@
 * C -- char
 * I -- int
 * W -- long
-* Q -- long long
+* O -- long long
 * M -- unsigned char
 * N -- unsigned int
 * Z -- unsigned long
 * Q -- unsigned long long
-* O -- void
+* 0 -- void
 * P -- pointer
 * F -- function
 * V -- vector
@@ -338,8 +338,8 @@
 * S -- struct
 * B -- bool
 * J -- float
-* D -- Double
-* H -- double
+* D -- double
+* H -- long double
 * A -- automatic
 * R -- register
 * G -- public (global variable declared in the module)