search for: additi

Displaying 4 results from an estimated 4 matches for "additi".

Did you mean: aditi
2009 Dec 18
1
[LLVMdev] problem when use inline asm for msp430 target
Hi Anton, Need i write additial c/c++/td code for my target to support inline asm? Regrads 2009/12/18 Anton Korobeynikov <anton at korobeynikov.info> > Hello > > > inline asm code is like below: > > > > void test(unsigned short a) { > > asm("myinstr my16bitreg, %0"::&...
2009 Dec 18
0
[LLVMdev] problem when use inline asm for msp430 target
Hello > inline asm code is like below: > > void test(unsigned short a) { >    asm("myinstr          my16bitreg, %0"::"r"(a)); > } > I want it generate instruction "myinstr          my16bitreg, r15" > > I execute > llc test.bc -march = msp430 -o test.s > then it reports > "LLVM ERROR: Couldn't allocate input reg for constraint
2009 Jul 20
0
No subject
...up many hours prior. --0016e68ddac7ec992a048036e5b4 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Good day all!<br><br>I have an issue which has plagued me for quite sometim= e now...and as I close in on its cause, I have reached a point where additi= onal info would be greatly helpful!<br><br>When a SIP device dials another = SIP device...Asterisk connects the calls and displays the channel informati= on.<br> If one of those SIP devices hangs up, Asterisk receives the hangup notice a= nd disconnects the call/channel.<br&gt...
2009 Dec 18
3
[LLVMdev] problem when use inline asm for msp430 target
Hi everyone, inline asm code is like below: void test(unsigned short a) { asm("myinstr my16bitreg, %0"::"r"(a)); } I want it generate instruction "myinstr my16bitreg, r15" I execute llc test.bc -march = msp430 -o test.s then it reports "LLVM ERROR: Couldn't allocate input reg for constraint 'r' !" What's the reason?