Files
llvm/clang/lib/CIR/CodeGen/CIRGenPointerAuth.cpp
Andy Kaylor 260df80fc4 [CIR] Handle scalar DerivedToBase cast expressions (#167370)
This adds handling in CIR's ScalarExprEmitter for CK_DerivedToBase cast
expressions.
2025-11-12 13:19:47 -08:00

24 lines
848 B
C++

//===--- CIRGenPointerAuth.cpp - CIR generation for ptr auth --------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
//
// This file contains common routines relating to the emission of
// pointer authentication operations.
//
//===----------------------------------------------------------------------===//
#include "CIRGenFunction.h"
using namespace clang;
using namespace clang::CIRGen;
Address CIRGenFunction::getAsNaturalAddressOf(Address addr,
QualType pointeeTy) {
assert(!cir::MissingFeatures::pointerAuthentication());
return addr;
}