[RISCV] Check isFixedLengthVector before calling getVectorNumElements in getSingleShu...
[llvm-project.git] / clang / lib / Headers / cuda_wrappers / bits / basic_string.h
blob64f50d9f6a72e7a4240d68490d5449d172faba99
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/basic_string.h"
9 #pragma pop_macro("__noinline__")