diff options
Diffstat (limited to 'lib/Sema/Scope.cpp')
| -rw-r--r-- | lib/Sema/Scope.cpp | 11 | 
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/Sema/Scope.cpp b/lib/Sema/Scope.cpp index eae5a328bfa2c..51b0b24e57b74 100644 --- a/lib/Sema/Scope.cpp +++ b/lib/Sema/Scope.cpp @@ -1,9 +1,8 @@  //===- Scope.cpp - Lexical scope information --------------------*- C++ -*-===//  // -//                     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  //  //===----------------------------------------------------------------------===//  // @@ -167,7 +166,9 @@ void Scope::dumpImpl(raw_ostream &OS) const {        {SEHExceptScope, "SEHExceptScope"},        {SEHFilterScope, "SEHFilterScope"},        {CompoundStmtScope, "CompoundStmtScope"}, -      {ClassInheritanceScope, "ClassInheritanceScope"}}; +      {ClassInheritanceScope, "ClassInheritanceScope"}, +      {CatchScope, "CatchScope"}, +  };    for (auto Info : FlagInfo) {      if (Flags & Info.first) {  | 
