diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2020-01-02 14:01:48 -0500 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2020-01-02 14:01:48 -0500 |
| commit | 213ff939f18f147b5d9dd164d52ebdd660dab7b4 (patch) | |
| tree | bc647d607254e1668b40199cb9c483900359d4fe /src/ir.hpp | |
| parent | cb56b26900dcb563b008cf132aa3ae180d6a205a (diff) | |
| download | zig-213ff939f18f147b5d9dd164d52ebdd660dab7b4.tar.gz zig-213ff939f18f147b5d9dd164d52ebdd660dab7b4.zip | |
fix comptime vector float ops and add test coverage
also rename `@ln` to `@log` to match libc convention.
Diffstat (limited to 'src/ir.hpp')
| -rw-r--r-- | src/ir.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ir.hpp b/src/ir.hpp index a20dc2d232..003bf4897d 100644 --- a/src/ir.hpp +++ b/src/ir.hpp @@ -33,7 +33,7 @@ bool ir_has_side_effects(IrInstruction *instruction); struct IrAnalyze; ZigValue *const_ptr_pointee(IrAnalyze *ira, CodeGen *codegen, ZigValue *const_val, AstNode *source_node); -const char *float_op_to_name(BuiltinFnId op, bool llvm_name); +const char *float_op_to_name(BuiltinFnId op); // for debugging purposes void dbg_ir_break(const char *src_file, uint32_t line); |
