repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[RISCV] Simplify MIPS CCMov patterns. NFC (#125318)
[llvm-project.git]
/
clang
/
test
/
Preprocessor
/
embed_path_quote.c
blob
79ca1e5c811b813092258fb4e0e1445f01d3ada6
1
// RUN: %clang_cc1 -std=c23 %s -fsyntax-only --embed-dir=%S/Inputs -verify
2
// expected-no-diagnostics
3
4
const char
data
[] = {
5
#embed
"single_byte.txt"
6
};
7
static_assert
(
sizeof
(
data
) ==
1
);
8
static_assert
(
'a'
==
data
[
0
]);