search for: emitfunctionentrylabel

Displaying 2 results from an estimated 2 matches for "emitfunctionentrylabel".

2012 Mar 13
3
[LLVMdev] Your commit 103140
...i8*, i8*) > Index: lib/CodeGen/AsmPrinter/AsmPrinter.cpp > =================================================================== > --- lib/CodeGen/AsmPrinter/AsmPrinter.cpp (revision 103139) > +++ lib/CodeGen/AsmPrinter/AsmPrinter.cpp (revision 103140) > @@ -408,7 +408,13 @@ > /// EmitFunctionEntryLabel - Emit the label that is the entrypoint for the > /// function. This can be overridden by targets as required to do custom stuff. > void AsmPrinter::EmitFunctionEntryLabel() { > - OutStreamer.EmitLabel(CurrentFnSym); > + // The function label could have already been emitted if two...
2013 Apr 19
1
[LLVMdev] funny llvm bug
> I have not looked at how gcc implements this internally but in LLVM I'm > creating real IR for a function (the stub being in mips32 mode; even though > the rest of the compilation unit is being compiled in mips16 mode). This is > one (not the only) reason why I implemented the ability to switch processor > modes on a per function basis. Now that I see where this is from, why