X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/a06663061c35a475ef947bf228512f8df92e36f0..2f33dd04e61fcd883fc6ddcb8f2add8fd9a45eba:/Output.cpp diff --git a/Output.cpp b/Output.cpp index 3daf4cf..50cc836 100644 --- a/Output.cpp +++ b/Output.cpp @@ -1185,6 +1185,15 @@ void CYTypeError::Output(CYOutput &out) const { out << "@error"; } +void CYTypeFloating::Output(CYOutput &out) const { + switch (length_) { + case 0: out << "float"; break; + case 1: out << "double"; break; + case 2: out << "long" << ' ' << "double"; break; + default: _assert(false); + } +} + void CYTypeInt128::Output(CYOutput &out) const { switch (signing_) { case CYTypeNeutral: break;