[RISCV] Simplify MIPS CCMov patterns. NFC (#125318)
[llvm-project.git] / clang / test / Preprocessor / embed_path_quote.c
blob79ca1e5c811b813092258fb4e0e1445f01d3ada6
1 // RUN: %clang_cc1 -std=c23 %s -fsyntax-only --embed-dir=%S/Inputs -verify
2 // expected-no-diagnostics
4 const char data[] = {
5 #embed "single_byte.txt"
6 };
7 static_assert(sizeof(data) == 1);
8 static_assert('a' == data[0]);