Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
a9b21d22bb9337649723a8477b5cb15f83451e7d
/
.
/
test
/
CodeGenCXX
/
enum.cpp
blob: cfcd264bd347a6b01b37edb83af6d3e75d939f48 [
file
] [
log
] [
blame
]
Daniel Dunbar
a572887
2009-12-15 20:14:24 +0000
[
diff
] [
blame
]
1
// RUN: %clang_cc1 -emit-llvm-only -verify %s
Eli Friedman
29a7f33
2009-12-10 22:29:29 +0000
[
diff
] [
blame
]
2
3
enum
A
{
a
}
__attribute
((
packed
));
4
int
func
(
A x
)
{
return
x
==
a
;
}