summaryrefslogtreecommitdiff
path: root/source/slang/ir.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/ir.h')
-rw-r--r--source/slang/ir.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/slang/ir.h b/source/slang/ir.h
index fdca73a83..3d4899824 100644
--- a/source/slang/ir.h
+++ b/source/slang/ir.h
@@ -157,7 +157,10 @@ struct IRValue : public IRObject
// no value.
RefPtr<Type> type;
- Type* getType() { return type; }
+ Type* getFullType() { return type; }
+
+ Type* getRate();
+ Type* getDataType();
// Source location information for this value, if any
SourceLoc sourceLoc;