summaryrefslogtreecommitdiff
path: root/ir.h
diff options
context:
space:
mode:
authorSøren Sandmann Pedersen <sandmann@redhat.com>2009-01-06 08:45:44 -0500
committerSøren Sandmann Pedersen <sandmann@redhat.com>2009-01-06 08:45:44 -0500
commitbc7633c5176cb917a5b5466210c9f03d509bea63 (patch)
treef0a3e9735a610e618a0ff8e9cd0a27a1b5b22bc4 /ir.h
parent5f9f51adbeb1610e2f9957858a6b30c3270060d0 (diff)
Add ir_var_new_wider
Diffstat (limited to 'ir.h')
-rw-r--r--ir.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/ir.h b/ir.h
index 2554a46..c8b81bb 100644
--- a/ir.h
+++ b/ir.h
@@ -6,10 +6,16 @@ typedef struct IRVar IRVar;
typedef enum
{
IR_POINTER,
+
+ IR_UINT64,
IR_UINT32,
+ IR_UINT16,
IR_UINT8,
+
+ IR_INT64,
IR_INT32,
- IR_BIT
+ IR_INT16,
+ IR_INT8
} IRBasicType;
IR *ir_new (void);