Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for __has_feature (0.69 sec)

  1. src/runtime/cgo/gcc_traceback.c

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build darwin || linux
    
    #include <stdint.h>
    #include "libcgo.h"
    
    #ifndef __has_feature
    #define __has_feature(x) 0
    #endif
    
    #if __has_feature(memory_sanitizer)
    #include <sanitizer/msan_interface.h>
    #endif
    
    // Call the user's traceback function and then call sigtramp.
    // The runtime signal handler will jump to this code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 08 20:11:59 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. src/runtime/cgo/libcgo.h

    };
    
    /*
     * TSAN support.  This is only useful when building with
     *   CGO_CFLAGS="-fsanitize=thread" CGO_LDFLAGS="-fsanitize=thread" go install
     */
    #undef CGO_TSAN
    #if defined(__has_feature)
    # if __has_feature(thread_sanitizer)
    #  define CGO_TSAN
    # endif
    #elif defined(__SANITIZE_THREAD__)
    # define CGO_TSAN
    #endif
    
    #ifdef CGO_TSAN
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 20:50:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #  endif  // __GXX_RTTI
    
    // Clang defines __GXX_RTTI starting with version 3.0, but its manual recommends
    // using has_feature instead. has_feature(cxx_rtti) is supported since 2.7, the
    // first version with C++ support.
    # elif defined(__clang__)
    
    #  define GTEST_HAS_RTTI __has_feature(cxx_rtti)
    
    // Starting with version 9.0 IBM Visual Age defines __RTTI_ALL__ to 1 if
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #  endif  // __GXX_RTTI
    
    // Clang defines __GXX_RTTI starting with version 3.0, but its manual recommends
    // using has_feature instead. has_feature(cxx_rtti) is supported since 2.7, the
    // first version with C++ support.
    # elif defined(__clang__)
    
    #  define GTEST_HAS_RTTI __has_feature(cxx_rtti)
    
    // Starting with version 9.0 IBM Visual Age defines __RTTI_ALL__ to 1 if
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
Back to top