[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGenCXX / forward-enum.cpp
blob9d6a6186e255d30c154c0628e9dec4aa4590078c
1 // RUN: %clang_cc1 -std=c++11 -triple x86_64-apple-darwin11.0.0 -emit-llvm -o - %s | FileCheck %s
3 enum MyEnum : char;
4 void bar(MyEnum value) { }
6 // CHECK-LABEL: define{{.*}} void @_Z3foo6MyEnum
7 void foo(MyEnum value)
9 // CHECK: call void @_Z3bar6MyEnum(i8 noundef signext
10 bar(value);