aboutsummaryrefslogtreecommitdiff
path: root/src/codegen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/codegen.cpp')
-rw-r--r--src/codegen.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/codegen.cpp b/src/codegen.cpp
index ada9bebf23..d275bea386 100644
--- a/src/codegen.cpp
+++ b/src/codegen.cpp
@@ -2286,9 +2286,11 @@ static LLVMValueRef ir_render_instruction(CodeGen *g, IrExecutable *executable,
case IrInstructionIdEnumTag:
return ir_render_enum_tag(g, executable, (IrInstructionEnumTag *)instruction);
case IrInstructionIdSwitchVar:
+ zig_panic("TODO render switch var instruction to LLVM");
case IrInstructionIdContainerInitList:
+ zig_panic("TODO render container init list instruction to LLVM");
case IrInstructionIdStructInit:
- zig_panic("TODO render more IR instructions to LLVM");
+ zig_panic("TODO render struct init to LLVM");
}
zig_unreachable();
}