[AMDGPU][AsmParser][NFC] Get rid of custom default operand handlers.
[llvm-project.git] / clang / lib / Headers / cuda_wrappers / bits / shared_ptr_base.h
blob10028dd7bd9a09191fc5e0ce3b3d71631e935271
1 // CUDA headers define __noinline__ which interferes with libstdc++'s use of
2 // `__attribute((__noinline__))`. In order to avoid compilation error,
3 // temporarily unset __noinline__ when we include affected libstdc++ header.
5 #pragma push_macro("__noinline__")
6 #undef __noinline__
7 #include_next "bits/shared_ptr_base.h"
9 #pragma pop_macro("__noinline__")