diff options
| author | gingerBill <bill@gingerbill.org> | 2022-03-19 13:03:08 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2022-03-19 13:03:08 +0000 |
| commit | 16bd6c7205a1eea264cc2daa077f4c7f096868af (patch) | |
| tree | b2ac4038bec2d8f1430a7b3b7f0d1a4bd104b098 /src/llvm_backend_expr.cpp | |
| parent | 714a5e8931c6113807077dd1653a94437b267708 (diff) | |
Mock out instructions emit calls
Diffstat (limited to 'src/llvm_backend_expr.cpp')
| -rw-r--r-- | src/llvm_backend_expr.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/llvm_backend_expr.cpp b/src/llvm_backend_expr.cpp index 4294747b9..4643b5322 100644 --- a/src/llvm_backend_expr.cpp +++ b/src/llvm_backend_expr.cpp @@ -2182,9 +2182,6 @@ lbValue lb_emit_comp(lbProcedure *p, TokenKind op_kind, lbValue left, lbValue ri } else { Type *lt = left.type; Type *rt = right.type; - - lt = left.type; - rt = right.type; i64 ls = type_size_of(lt); i64 rs = type_size_of(rt); |