Revert "[llvm] Improve llvm.objectsize computation by computing GEP, alloca and mallo...
[llvm-project.git] / clang / test / Preprocessor / macro_raw_string.cpp
blob95f83807d1593420003a2e847ed744dd5518c2a2
1 // RUN: %clang_cc1 -E -std=c++11 %s -o %t
2 // RUN: %clang_cc1 %t
4 #define FOO(str) foo(#str)
6 extern void foo(const char *str);
8 void bar(void) {
9 FOO(R"(foo
10 bar)");