aboutsummaryrefslogtreecommitdiff
path: root/contrib/llvm/lib/MC/MCTargetOptions.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/llvm/lib/MC/MCTargetOptions.cpp')
-rw-r--r--contrib/llvm/lib/MC/MCTargetOptions.cpp18
1 files changed, 8 insertions, 10 deletions
diff --git a/contrib/llvm/lib/MC/MCTargetOptions.cpp b/contrib/llvm/lib/MC/MCTargetOptions.cpp
index b85e53db5d61..96bb094134fe 100644
--- a/contrib/llvm/lib/MC/MCTargetOptions.cpp
+++ b/contrib/llvm/lib/MC/MCTargetOptions.cpp
@@ -1,9 +1,8 @@
//===- lib/MC/MCTargetOptions.cpp - MC Target Options ---------------------===//
//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
@@ -13,12 +12,11 @@
using namespace llvm;
MCTargetOptions::MCTargetOptions()
- : SanitizeAddress(false), MCRelaxAll(false), MCNoExecStack(false),
- MCFatalWarnings(false), MCNoWarn(false), MCNoDeprecatedWarn(false),
- MCSaveTempLabels(false), MCUseDwarfDirectory(false),
- MCIncrementalLinkerCompatible(false), MCPIECopyRelocations(false),
- ShowMCEncoding(false), ShowMCInst(false), AsmVerbose(false),
- PreserveAsmComments(true) {}
+ : MCRelaxAll(false), MCNoExecStack(false), MCFatalWarnings(false),
+ MCNoWarn(false), MCNoDeprecatedWarn(false), MCSaveTempLabels(false),
+ MCUseDwarfDirectory(false), MCIncrementalLinkerCompatible(false),
+ MCPIECopyRelocations(false), ShowMCEncoding(false), ShowMCInst(false),
+ AsmVerbose(false), PreserveAsmComments(true) {}
StringRef MCTargetOptions::getABIName() const {
return ABIName;