Displaying 2 results from an estimated 2 matches for "llvm23".
Did you mean:
llvm2
2016 Oct 31
1
COMPILER-RT build break
...: "memory"); \
}
} // End of anonymous namespace
The error before this change:
Current problem with the build after patch:
[100%] Generating ASAN_NOINST_TEST_OBJECTS.asan_noinst_test.cc.x86_64-with-calls.o
/home/mzuckerm/llvm23/llvm/projects/compiler-rt/lib/asan/tests/asan_asm_test.cc:70:1: error: asm-specifier for input or output
variable conflicts with asm clobber list
DECLARE_ASM_REP_MOVS(U8, "movsq");
^
/home/mzuckerm/llvm23/llvm/projects/compiler-rt/lib/asan/tests/asan_asm_test.cc:65:15: note: expande...
2010 Jul 12
1
[LLVMdev] Operation on argument of 2d array of templated class can NOT pass llvm-gcc
for example:
template <int N>
class T {
public:
int V;
};
T<4> test(T<4> a[4][8]) {
return a[3][3];
}
in LLVM23 release, it will crash llvm-gcc,
test.cpp: In function \u2018T<4> test(T<4> (*)[8])\u2019:
test.cpp:7: internal compiler error: Segmentation fault
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://llvm.org/bugs/> for instructions.
in TOT...