Displaying 1 result from an estimated 1 matches for "ccclz4vr".
2003 Nov 23
3
[LLVMdev] Linkage Types again!
...tkrc -e -f -o testing.bc /proj/work/llvm/projects/Stacker/test/testing.st
llc -f -o testing.s testing.bc
gcc -ggdb -L/proj/work/llvmobj/lib/Debug testing.s -lstkr_runtime -o eq eq.s
/tmp/ccYV2ZHL.o(.bss+0x0):/proj/work/llvmobj/projects/Stacker/test/eq.s:10: multiple definition of `_stack_'
/tmp/ccClZ4Vr.o(.bss+0x0):/proj/work/llvmobj/projects/Stacker/test/testing.s:10: first defined here
collect2: ld returned 1 exit status
I looked at GlobalValue::LinkageTypes hoping that the enumeration was a
set of bitfields that I could OR together to produce:
ExternalLinkage|AppendingLinkage
but, alas, the...