comparison gen/asmstmt.cpp @ 222:251548c1035d trunk

[svn r238] use *m for memory input constraints and pass in their address
author ChristianK
date Fri, 06 Jun 2008 21:44:17 +0200
parents 68687d8c3e9a
children 5ffca623b5df
comparison
equal deleted inserted replaced
221:68687d8c3e9a 222:251548c1035d
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 = "p";
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
264 AsmCode * code = (AsmCode *) asmcode; 264 AsmCode * code = (AsmCode *) asmcode;