blob: 20b0646fdab4448e6246d2db78e8c0c1c5427b56 [file] [log] [blame] [edit]
//===--- 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;
}