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
/
forward-enum.cpp
blob
9d6a6186e255d30c154c0628e9dec4aa4590078c
1
// RUN: %clang_cc1 -std=c++11 -triple x86_64-apple-darwin11.0.0 -emit-llvm -o - %s | FileCheck %s
2
3
enum
MyEnum
:
char
;
4
void
bar
(
MyEnum value
) { }
5
6
// CHECK-LABEL: define{{.*}} void @_Z3foo6MyEnum
7
void
foo
(
MyEnum value
)
8
{
9
// CHECK: call void @_Z3bar6MyEnum(i8 noundef signext
10
bar
(
value
);
11
}