From 15abef6df940fb76dd6fe4bdf2cc890609325701 Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Thu, 23 Jan 2014 06:47:25 +0000 Subject: Add a variable to track whether or not we've used a unique section, e.g. linkonce, to TargetMachine and set it when we've done so for ELF targets currently. This involved making TargetMachine non-const in a TLOF use and propagating that change around - I'm open to other ideas. This will be used in a future commit to handle emitting debug information with ranges. llvm-svn: 199871 --- llvm/lib/Target/TargetMachine.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'llvm/lib/Target/TargetMachine.cpp') diff --git a/llvm/lib/Target/TargetMachine.cpp b/llvm/lib/Target/TargetMachine.cpp index a2350352071..39ade0a2b85 100644 --- a/llvm/lib/Target/TargetMachine.cpp +++ b/llvm/lib/Target/TargetMachine.cpp @@ -55,6 +55,7 @@ TargetMachine::TargetMachine(const Target &T, MCUseLoc(true), MCUseCFI(true), MCUseDwarfDirectory(false), + DebugUseUniqueSections(false), RequireStructuredCFG(false), Options(Options) { } -- cgit v1.2.3