diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2016-12-11 00:43:23 -0500 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2016-12-11 00:43:23 -0500 |
| commit | 10cea15cc3061272a0ed05fafe9e762f6454fafc (patch) | |
| tree | fc8a9cae06d4232ebf22a71ef9c59986f57f38bb /src/codegen.cpp | |
| parent | 2dd85d52cc4c4c6a32704f187b41a06401400f0c (diff) | |
| download | zig-10cea15cc3061272a0ed05fafe9e762f6454fafc.tar.gz zig-10cea15cc3061272a0ed05fafe9e762f6454fafc.zip | |
IR: implement embedFile builtin
Diffstat (limited to 'src/codegen.cpp')
| -rw-r--r-- | src/codegen.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/codegen.cpp b/src/codegen.cpp index e3e162173b..277c56ae4f 100644 --- a/src/codegen.cpp +++ b/src/codegen.cpp @@ -1878,6 +1878,7 @@ static LLVMValueRef ir_render_instruction(CodeGen *g, IrExecutable *executable, case IrInstructionIdCInclude: case IrInstructionIdCDefine: case IrInstructionIdCUndef: + case IrInstructionIdEmbedFile: zig_unreachable(); case IrInstructionIdReturn: return ir_render_return(g, executable, (IrInstructionReturn *)instruction); |
