Displaying 1 result from an estimated 1 matches for "emnable".
Did you mean:
emable
2008 Mar 23
1
[LLVMdev] non-enable-llvm support in llvm-gcc-4.2 issue
...(UnKnown Unknown)) -1 (nil)
(nil))
test.cpp:1: internal compiler error: in extract_insn, at recog.c:2100
I managed to track this down to init_one_libfunc being broken. There's some logic to try to divert an llvm_init_one_libfunc to the old implementation (via some #defines) when --emnable-llvm isn't being used, but 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/exp...