Go to the source code of this file.
Functions | |
static std::string | createFuncName (int label) |
static std::string createFuncName | ( | int | label | ) | [static] |
Definition at line 66 of file instructions.cpp.
References stream.
00067 { 00068 std::ostringstream stream; 00069 stream << "function"; 00070 stream << label; 00071 return stream.str(); 00072 }