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
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
CodeGenCXX
/
enum.cpp
blob
3985e96ab9fe78573f238e53aba7576aae4fb294
1
// RUN: %clang_cc1 -emit-llvm-only -verify %s
2
// expected-no-diagnostics
3
4
enum
A
{
a
}
__attribute
((
packed
));
5
int
func
(
A x
) {
return
x
==
a
; }