URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [ext/] [asm2.C] - Rev 154
Compare with Previous | Blame | View Log
// Bug: in a template, we forgot that this was a simple asm, and decided
// that %edi was a malformed operand specifier.
template <class T> class I {
public:
void f() { asm ("# mov %edi, %esi" ); }
};
int main () {
I<int> x;
x.f();
}