1 // Copyright 2011 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "partition_alloc/partition_alloc_base/debug/alias.h"
6 
7 #include "partition_alloc/partition_alloc_base/compiler_specific.h"
8 
9 namespace partition_alloc::internal::base::debug {
10 
11 // This file/function should be excluded from LTO/LTCG to ensure that the
12 // compiler can't see this function's implementation when compiling calls to it.
Alias(const void * var)13 PA_NOINLINE void Alias(const void* var) {}
14 
15 }  // namespace partition_alloc::internal::base::debug
16