From 13760bd152b6c28ffa38ab1c74e6a6a2e52a3a30 Mon Sep 17 00:00:00 2001 From: Jim Grosbach Date: Sat, 30 May 2015 01:25:56 +0000 Subject: MC: Clean up MCExpr naming. NFC. llvm-svn: 238634 --- llvm/lib/CodeGen/AsmPrinter/AddressPool.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib/CodeGen/AsmPrinter/AddressPool.cpp') diff --git a/llvm/lib/CodeGen/AsmPrinter/AddressPool.cpp b/llvm/lib/CodeGen/AsmPrinter/AddressPool.cpp index 2487aba448c..8c6838394ac 100644 --- a/llvm/lib/CodeGen/AsmPrinter/AddressPool.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/AddressPool.cpp @@ -38,7 +38,7 @@ void AddressPool::emit(AsmPrinter &Asm, MCSection *AddrSection) { Entries[I.second.Number] = I.second.TLS ? Asm.getObjFileLowering().getDebugThreadLocalSymbol(I.first) - : MCSymbolRefExpr::Create(I.first, Asm.OutContext); + : MCSymbolRefExpr::create(I.first, Asm.OutContext); for (const MCExpr *Entry : Entries) Asm.OutStreamer->EmitValue(Entry, Asm.getDataLayout().getPointerSize()); -- cgit v1.2.3