aboutsummaryrefslogtreecommitdiff
path: root/src/ir.hpp
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2020-01-02 14:01:48 -0500
committerAndrew Kelley <andrew@ziglang.org>2020-01-02 14:01:48 -0500
commit213ff939f18f147b5d9dd164d52ebdd660dab7b4 (patch)
treebc647d607254e1668b40199cb9c483900359d4fe /src/ir.hpp
parentcb56b26900dcb563b008cf132aa3ae180d6a205a (diff)
downloadzig-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.hpp2
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);