tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

alias.cc (487B)


      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 "base/debug/alias.h"
      6 
      7 #include "base/compiler_specific.h"
      8 
      9 namespace base {
     10 namespace debug {
     11 
     12 // This file/function should be excluded from LTO/LTCG to ensure that the
     13 // compiler can't see this function's implementation when compiling calls to it.
     14 NOINLINE void Alias(const void* var) {}
     15 
     16 }  // namespace debug
     17 }  // namespace base