Displaying 5 results from an estimated 5 matches for "snaphat".
Did you mean:
snapchat
2011 Jan 21
0
[LLVMdev] How to extend llvm IR and frontend?
On Fri, Jan 21, 2011 at 4:32 PM, Aaron Myles Landwehr <snaphat at gmail.com> wrote:
> Hypothetically, suppose I have a generic system with multiple address spaces
> such that each address space is accessed using different instructions.
> Now suppose, I wanted to add a new keywords 'foo' and 'bar' to the front of
> c variables and...
2011 Jan 21
4
[LLVMdev] How to extend llvm IR and frontend?
Hi all,
Hypothetically, suppose I have a generic system with multiple address spaces
such that each address space is accessed using different instructions.
Now suppose, I wanted to add a new keywords 'foo' and 'bar' to the front of
c variables and function return types such that the following would be
valid:
foo void* a;
foo void* somefunc(){...}
bar int b;
int somefunc2(bar
2013 Nov 24
1
[LLVMdev] x86_64 code generation defects when SSE instructions are disabled
Hi all,
Recently, I discovered a defect in GCC's code generation for x86_64 targets
when SSE is disabled. Upon testing with LLVM 3.2, I found that it also has
the same issues so I'm linking a GCC bug report I made. The proposed
solution for the second issue listed there also applies to LLVM:
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59277
As I noted in the bug report, I'm not sure
2011 Jul 30
0
[LLVMdev] Problem while selfhosting LLVM and Clang
This looks relevant to me for your issue. Grabbing the cxxabi.h from there
may work:
http://comments.gmane.org/gmane.comp.compilers.clang.devel/9391
--
Aaron Myles Landwehr
On Sat, Jul 30, 2011 at 1:33 AM, 陳韋任 <chenwj at iis.sinica.edu.tw> wrote:
> Hi, all
>
> I am trying to selfhost LLVM and Clang. Below is my flow,
>
> Step 1. Build LLVM and Clang by using native gcc
2011 Jul 30
0
[LLVMdev] Problem while selfhosting LLVM and Clang
On Sat, Jul 30, 2011 at 2:35 AM, 陳韋任 <chenwj at iis.sinica.edu.tw> wrote:
> Hi, Asron
>
> > This looks relevant to me for your issue. Grabbing the cxxabi.h from
> there
> > may work:
> >
> > http://comments.gmane.org/gmane.comp.compilers.clang.devel/9391
>
> I am not sure where to put cxxabi.h. How can I let clang find this
> header file while