We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbcb880 commit e16deb7Copy full SHA for e16deb7
1 file changed
lib/smack/SmackRep.cpp
@@ -226,6 +226,12 @@ std::string SmackRep::type(const llvm::Type *t) {
226
return Naming::DOUBLE_TYPE;
227
else if (t->isX86_FP80Ty())
228
return Naming::LONG_DOUBLE_TYPE;
229
+ else if (t->isFP128Ty())
230
+ return Naming::UNINTRTERPRETED_FLOAT_TYPE;
231
+ else if (t->isPPC_FP128Ty())
232
233
+ else if (t->isBFloatTy())
234
235
else
236
llvm_unreachable("Unsupported floating-point type.");
237
}
0 commit comments