rename c_long_double to c_longdouble

to be consistent with other c primitive type names
This commit is contained in:
Andrew Kelley
2017-05-07 19:51:44 -04:00
parent e485af94d4
commit 5774b48ceb
4 changed files with 6 additions and 6 deletions

View File

@@ -275,7 +275,7 @@ static TypeTableEntry *resolve_type_with_table(Context *c, const Type *ty, const
case BuiltinType::Double:
return c->codegen->builtin_types.entry_f64;
case BuiltinType::LongDouble:
return c->codegen->builtin_types.entry_c_long_double;
return c->codegen->builtin_types.entry_c_longdouble;
case BuiltinType::WChar_U:
case BuiltinType::Char16:
case BuiltinType::Char32: