mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-27 00:21:03 +00:00
MC: Clean up method names in MCContext.
The naming was a mish-mash of old and new style. Update to be consistent with the new. NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@237594 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -37,7 +37,7 @@ void ConstantPool::emitEntries(MCStreamer &Streamer) {
|
||||
|
||||
const MCExpr *ConstantPool::addEntry(const MCExpr *Value, MCContext &Context,
|
||||
unsigned Size) {
|
||||
MCSymbol *CPEntryLabel = Context.CreateTempSymbol();
|
||||
MCSymbol *CPEntryLabel = Context.createTempSymbol();
|
||||
|
||||
Entries.push_back(ConstantPoolEntry(CPEntryLabel, Value, Size));
|
||||
return MCSymbolRefExpr::Create(CPEntryLabel, Context);
|
||||
|
Reference in New Issue
Block a user