]> CRI, Mines Paris - PSL - Faustine.git/blobdiff - interpretor/preprocessor/faust-0.9.47mr3/compiler/boxes/ppbox.cpp
Merge branch 'master' of https://scm.cri.ensmp.fr/git/Faustine
[Faustine.git] / interpretor / preprocessor / faust-0.9.47mr3 / compiler / boxes / ppbox.cpp
index 10e6389265dde3d0c0f98e24ff42ac0277aea7f4..c54701b27030fc73be6053d0165694c74750aa5c 100644 (file)
@@ -56,13 +56,13 @@ const char * prim2name(CTree *(*ptr) (CTree *, CTree *))
        if (ptr == sigOR ) return "|";
        if (ptr == sigXOR) return "^";
 
-       if (ptr == sigLeftShift ) return "<<";
-       if (ptr == sigRightShift) return ">>";
+       if (ptr == sigLeftShift ) return "<< ";
+       if (ptr == sigRightShift) return " >>";
 
        if (ptr == sigLT) return "< ";
        if (ptr == sigLE) return "<=";
        if (ptr == sigGT) return " >";
-       if (ptr == sigGE) return ">=";
+       if (ptr == sigGE) return " >=";
        if (ptr == sigEQ) return "==";
        if (ptr == sigNE) return "!=";