search for: 265b550

Displaying 1 result from an estimated 1 matches for "265b550".

Did you mean: 265550
2008 Mar 23
1
[LLVMdev] non-enable-llvm support in llvm-gcc-4.2 issue
...it doesn't even have the right return type anymore and only seems to do half the old logic (the rest being in llvm_init_one_libfunnc now). I've managed to fix it pretty easily with the following hack, but it really does feel like a hack: diff --git a/gcc/expr.h b/gcc/expr.h index 850e7af..265b550 100644 --- a/gcc/expr.h +++ b/gcc/expr.h @@ -753,9 +753,6 @@ extern rtx init_one_libfunc (const char *); /* LLVM LOCAL begin */ /* Call this to initialize an optab function tree. */ extern tree llvm_init_one_libfunc (const char *); -#ifndef ENABLE_LLVM -#define llvm_init_one_libfunc init_one_li...