clang 23.0.0git
TargetLoweringInfo.cpp
Go to the documentation of this file.
1//===---- TargetLoweringInfo.cpp - Encapsulate target details ---*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file partially mimics the TargetCodeGenInfo class from the file
10// clang/lib/CodeGen/TargetInfo.cpp.
11//
12//===----------------------------------------------------------------------===//
13
14#include "TargetLoweringInfo.h"
15
16namespace cir {
17
19
20std::string
21TargetLoweringInfo::getLLVMSyncScope(cir::SyncScopeKind syncScope) const {
22 return ""; // default sync scope
23}
24
25} // namespace cir
virtual std::string getLLVMSyncScope(cir::SyncScopeKind syncScope) const