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