Displaying 1 result from an estimated 1 matches for "printmodulelevelgv".
2009 Jul 07
0
[LLVMdev] llvm-mc direction
...this sort of approach has a number of advantages. A big
problem that I see today is that the .s writer and .o writers use
completely different code paths that make almost exactly the same
decisions. For example, if separate, they both need to have some
equivalent of the X86ATTAsmPrinter::printModuleLevelGV function, which
decides what low-level linkage, visibility, and many other aspects of
a global to emit.
Duplicating all this logic is bad and is likely to lead to -c and -S
doing different things. If the only difference between -c and -S is a
different implementation of MCStreamer, and if...