mirror of
https://github.com/intel/llvm.git
synced 2026-01-13 19:08:21 +08:00
24 lines
848 B
C++
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;
|
|
}
|