Skip to content

Commit a511be6

Browse files
committed
128 bit fix
1 parent e16deb7 commit a511be6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/smack/SmackRep.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -227,11 +227,11 @@ std::string SmackRep::type(const llvm::Type *t) {
227227
else if (t->isX86_FP80Ty())
228228
return Naming::LONG_DOUBLE_TYPE;
229229
else if (t->isFP128Ty())
230-
return Naming::UNINTRTERPRETED_FLOAT_TYPE;
230+
return Naming::UNINTERPRETED_FLOAT_TYPE;
231231
else if (t->isPPC_FP128Ty())
232-
return Naming::UNINTRTERPRETED_FLOAT_TYPE;
232+
return Naming::UNINTERPRETED_FLOAT_TYPE;
233233
else if (t->isBFloatTy())
234-
return Naming::UNINTRTERPRETED_FLOAT_TYPE;
234+
return Naming::UNINTERPRETED_FLOAT_TYPE;
235235
else
236236
llvm_unreachable("Unsupported floating-point type.");
237237
}

0 commit comments

Comments
 (0)