Get it compiling on Cabellera (g++0x not c++11)
[ipdf/code.git] / src / vfpu.cpp
index 8783ca1..18e1bde 100644 (file)
@@ -114,9 +114,10 @@ float Exec(float opa, float opb, Opcode op, Rmode rmode)
 Register Exec(const Register & a, const Register &  b, Opcode op, Rmode rmode)
 {
        assert(g_running);
-               
+       Fatal("Unsupported");   
        stringstream s;
-       s << hex << setw(8) << setfill('0') << a.to_ullong() << "\n" << b.to_ullong() << "\n" << setw(1) << op <<"\n" << setw(1) << rmode << "\n";
+       //TODO: Make it compile again
+       //s << hex << setw(8) << setfill('0') << a.to_ullong() << "\n" << b.to_ullong() << "\n" << setw(1) << op <<"\n" << setw(1) << rmode << "\n";
        string str(s.str());
        //Debug("Writing: %s", str.c_str());
 
@@ -138,7 +139,8 @@ Register Exec(const Register & a, const Register &  b, Opcode op, Rmode rmode)
        }
        
        stringstream s2;
-       s2 << hex << result.to_ullong();
+       //TODO: Make it comp[ile again
+       //s2 << hex << result.to_ullong();
        //Debug("Result is: %s", s2.str().c_str());
        return result;
 }

UCC git Repository :: git.ucc.asn.au