summaryrefslogtreecommitdiffstats
path: root/source/slang/ir.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/ir.cpp')
-rw-r--r--source/slang/ir.cpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/source/slang/ir.cpp b/source/slang/ir.cpp
new file mode 100644
index 000000000..44eb7a727
--- /dev/null
+++ b/source/slang/ir.cpp
@@ -0,0 +1,29 @@
+// ir.cpp
+#include "ir.h"
+
+#include "../core/basic.h"
+
+namespace Slang
+{
+
+ IRType* IRBuilder::getBoolType()
+ {
+ SLANG_UNIMPLEMENTED_X("IR");
+ }
+
+ IRValue* IRBuilder::getBoolValue(bool value)
+ {
+ SLANG_UNIMPLEMENTED_X("IR");
+ }
+
+ IRValue* IRBuilder::getIntValue(IRType* type, IRIntegerValue value)
+ {
+ SLANG_UNIMPLEMENTED_X("IR");
+ }
+
+ IRValue* IRBuilder::getFloatValue(IRType* type, IRFloatingPointValue value)
+ {
+ SLANG_UNIMPLEMENTED_X("IR");
+ }
+
+}