comparison gen/asmstmt.cpp @ 227:3092a38dddab trunk

[svn r243] fixed inline asm arg_pointer args hopefully.
author lindquist
date Sat, 07 Jun 2008 19:19:30 +0200
parents 4145266ff4bd
children cac3d27ae481
comparison
equal deleted inserted replaced
226:4145266ff4bd 227:3092a38dddab
253 253
254 if (! asmcode) 254 if (! asmcode)
255 return; 255 return;
256 256
257 static std::string i_cns = "i"; 257 static std::string i_cns = "i";
258 static std::string p_cns = "p"; 258 static std::string p_cns = "m";
259 static std::string m_cns = "*m"; 259 static std::string m_cns = "*m";
260 static std::string mw_cns = "=*m"; 260 static std::string mw_cns = "=*m";
261 static std::string mrw_cns = "+*m"; 261 static std::string mrw_cns = "+*m";
262 static std::string memory_name = "memory"; 262 static std::string memory_name = "memory";
263 263