mirror of
https://github.com/ziglang/zig.git
synced 2026-02-15 22:09:49 +00:00
Implement msp430 mapping for c_longdouble. (#7333)
This commit is contained in:
parent
a01d55e801
commit
1847d0cfc2
@ -8657,6 +8657,9 @@ static void define_builtin_types(CodeGen *g) {
|
||||
// It's either a float or a double, depending on a toolchain switch
|
||||
add_fp_entry(g, "c_longdouble", 64, LLVMDoubleType(), &g->builtin_types.entry_c_longdouble);
|
||||
break;
|
||||
case ZigLLVM_msp430:
|
||||
add_fp_entry(g, "c_longdouble", 64, LLVMDoubleType(), &g->builtin_types.entry_c_longdouble);
|
||||
break;
|
||||
default:
|
||||
zig_panic("TODO implement mapping for c_longdouble");
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user