mirror of
https://github.com/intel/llvm.git
synced 2026-01-16 05:32:28 +08:00
[clang][NFC] Add header comment for OSLog.cpp (#148537)
Signed-off-by: Bogdan Vetrenko <b.vetrenko@yandex.ru>
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user