<div>Hello,</div>
<div> </div>
<div>What is the correct way to use address_space attribute? For CLANG, I used the below code, but when I tried the same with LLVM, I got a warning.</div>
<div> </div>
<div>Thanks in advance,</div>
<div> </div>
<div>Juan Carlos</div>
<div> </div>
<div>-----------------------------</div>
<div> </div>
<div>Code used:</div>
<div> </div>
<div>#define GS_RELATIVE __attribute__((address_space(256)))<br>int foo(int GS_RELATIVE *P) {<br>  return *P;<br>}<br> int main(){<br>        return (1);<br>}<br>------------------------------</div>
<div> </div>
<div>LLVM messsage:</div>
<div> </div>
<div>~/test$ llvm-gcc addrspace256.c -emit-llvm -o -<br>addrspace256.c:2: warning: 'address_space' attribute directive ignored<br>/tmp/ccpdq1E2.o: file not recognized: File format not recognized<br>collect2: ld returned 1 exit status</div>

<div> </div>
<div><br>-- <br>Juan Carlos<br></div>