Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(540)

Unified Diff: lib/Target/X86/MCTargetDesc/X86MCNaCl.cpp

Issue 180483005: Fix PNaCl-local files after merging LLVM 3.4 (Closed) Base URL: http://git.chromium.org/native_client/pnacl-llvm.git@hs-merge-before-fixes
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/Bitcode/NaCl/Writer/NaClBitcodeWriter.cpp ('k') | lib/Transforms/NaCl/PromoteIntegers.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/Target/X86/MCTargetDesc/X86MCNaCl.cpp
diff --git a/lib/Target/X86/MCTargetDesc/X86MCNaCl.cpp b/lib/Target/X86/MCTargetDesc/X86MCNaCl.cpp
index 234692769c796f5252e6cab00be59187877980a3..0bb950f735147d2997eb36e9d0ad450a791ac34f 100644
--- a/lib/Target/X86/MCTargetDesc/X86MCNaCl.cpp
+++ b/lib/Target/X86/MCTargetDesc/X86MCNaCl.cpp
@@ -56,7 +56,7 @@ unsigned DemoteRegTo32_(unsigned RegIn);
static MCSymbol *CreateTempLabel(MCContext &Context, const char *Prefix) {
SmallString<128> NameSV;
raw_svector_ostream(NameSV)
- << Context.getAsmInfo().getPrivateGlobalPrefix() // get internal label
+ << Context.getAsmInfo()->getPrivateGlobalPrefix() // get internal label
<< Prefix << Context.getUniqueSymbolID();
return Context.GetOrCreateSymbol(NameSV);
}
« no previous file with comments | « lib/Bitcode/NaCl/Writer/NaClBitcodeWriter.cpp ('k') | lib/Transforms/NaCl/PromoteIntegers.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698