We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 512b4b5 commit 666cda9Copy full SHA for 666cda9
clang/lib/CIR/CodeGen/CIRGenTypes.cpp
@@ -173,13 +173,13 @@ mlir::Type CIRGenTypes::convertType(QualType type) {
173
case BuiltinType::Float:
174
assert(&astContext.getFloatTypeSemantics(type) ==
175
&llvm::APFloat::IEEEsingle() &&
176
- "ClangIR only supports float as IEEE 32-bit");
+ "ClangIR NYI: 'float' in a format other than IEEE 32-bit");
177
resultType = cgm.FloatTy;
178
break;
179
case BuiltinType::Double:
180
181
&llvm::APFloat::IEEEdouble() &&
182
- "ClangIR only supports double as IEEE 64-bit");
+ "ClangIR NYI: 'double' in a format other than IEEE 64-bit");
183
resultType = cgm.DoubleTy;
184
185
case BuiltinType::LongDouble:
0 commit comments