[clang][NFC] Add header comment for OSLog.cpp (#148537)

Signed-off-by: Bogdan Vetrenko <b.vetrenko@yandex.ru>
This commit is contained in:
Bogdan Vetrenko
2025-07-26 16:46:06 +03:00
committed by GitHub
parent c20a95a7dd
commit 652048ad25

View File

@@ -1,4 +1,16 @@
// TODO: header template
//===--- OSLog.cpp - OS log format string analysis ------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
///
/// \file
/// This file implements analysis functions for OS log format strings and
/// buffer layout computation for __builtin_os_log_format and related builtins.
///
//===----------------------------------------------------------------------===//
#include "clang/AST/OSLog.h"
#include "clang/AST/Attr.h"
@@ -137,8 +149,8 @@ public:
for (auto &Data : ArgsData) {
if (!Data.MaskType.empty()) {
CharUnits Size = CharUnits::fromQuantity(8);
Layout.Items.emplace_back(OSLogBufferItem::MaskKind, nullptr,
Size, 0, Data.MaskType);
Layout.Items.emplace_back(OSLogBufferItem::MaskKind, nullptr, Size, 0,
Data.MaskType);
}
if (Data.FieldWidth) {