blob: 20b0646fdab4448e6246d2db78e8c0c1c5427b56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
//===--- 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;
}
|