aboutsummaryrefslogtreecommitdiff
path: root/src/codegen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/codegen.cpp')
-rw-r--r--src/codegen.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/codegen.cpp b/src/codegen.cpp
index 88b565866a..7ed799611f 100644
--- a/src/codegen.cpp
+++ b/src/codegen.cpp
@@ -1175,13 +1175,6 @@ static LLVMValueRef ir_render_un_op(CodeGen *g, IrExecutable *executable, IrInst
}
case IrUnOpBinNot:
return LLVMBuildNot(g->builder, expr, "");
- case IrUnOpAddressOf:
- case IrUnOpConstAddressOf:
- zig_panic("TODO address of codegen");
- //{
- // TypeTableEntry *lvalue_type;
- // return gen_lvalue(g, node, expr_node, &lvalue_type);
- //}
case IrUnOpDereference:
{
assert(expr_type->id == TypeTableEntryIdPointer);