Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Modules / Inputs / PR26179 / basic_string.h
blob653ce078451c4466d24d3cffd9430bf22b87263b
1 #ifndef _GLIBCXX_STRING
2 #define _GLIBCXX_STRING 1
4 template<typename T>
5 struct basic_string {
6 static T _S_empty_rep_storage[];
7 };
9 template<typename T>
10 T basic_string<T>::_S_empty_rep_storage[sizeof(T)];
12 #endif