Displaying 4 results from an estimated 4 matches for "x86_prefetch_sse".
2006 Mar 15
2
[LLVMdev] Re: Re: Re: Re: New GCC4-based C/C++/ObjC front-end for LLVM
...rce if appropriate.
I can't reproduce this on darwin-ppc or darwin-x86, so this is a stab in
the dark. Can you try this patch:
===================================================================
--- i386.h (revision 112156)
+++ i386.h (working copy)
@@ -764,7 +764,13 @@ extern int x86_prefetch_sse;
/* target machine storage layout */
+/* APPLE LOCAL begin LLVM */
+#ifdef ENABLE_LLVM
+#define LONG_DOUBLE_TYPE_SIZE 64
+#else
#define LONG_DOUBLE_TYPE_SIZE 80
+#endif
+/* APPLE LOCAL end LLVM */
/* Set the value of FLT_EVAL_METHOD in float.h. When using only the
FPU, assume that t...
2006 Mar 15
0
[LLVMdev] Re: Re: Re: Re: New GCC4-based C/C++/ObjC front-end for LLVM
Chris Lattner wrote:
> Here's a new snapshot of the front-end:
> http://nondot.org/sabre/2006-03-14-llvm-gcc-4.tar.gz
>
> This:
>
> 1. Fixes the inline asm problem you have above.
> 2. Includes patches to make it better on Alpha's (thanks to patches by
> Andrew Lenharth).
> 3. Sync's it up with debug info changes in LLVM CVS (by Jim Laskey).
> 4.
2006 Mar 15
2
[LLVMdev] Re: Re: Re: New GCC4-based C/C++/ObjC front-end for LLVM
>> Sorry for the delay, please try this tarball:
>> http://nondot.org/sabre/2006-03-02-llvm-gcc-4.tar.gz
>
> There's some confusion with --enable-llvm configure parameter. I've built
> LLVM to a separate build dir. The source is ~ghost/Work/llvm-cvs and build
> dir is /space/p2/ghost/build/llvm-cvs
...
> So, it seems like, at the same time:
>
> 1. buildir
2006 Mar 15
0
[LLVMdev] Re: Re: Re: Re: New GCC4-based C/C++/ObjC front-end for LLVM
...;t reproduce this on darwin-ppc or darwin-x86, so this is a
> stab in the dark. Can you try this patch:
>
> ===================================================================
> --- i386.h (revision 112156)
> +++ i386.h (working copy)
> @@ -764,7 +764,13 @@ extern int x86_prefetch_sse;
>
>
> /* target machine storage layout */
>
> +/* APPLE LOCAL begin LLVM */
> +#ifdef ENABLE_LLVM
> +#define LONG_DOUBLE_TYPE_SIZE 64
> +#else
> #define LONG_DOUBLE_TYPE_SIZE 80
> +#endif
> +/* APPLE LOCAL end LLVM */
>
> /* Set the value of FLT_EVAL_METHO...