summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/forward-enum.cpp
blob: 685e4f31cc61a470e64be2849b5f9d0cc1f4c1be (plain)
1
2
3
4
5
6
7
8
9
10
11
// RUN: %clang_cc1 -std=c++11 -triple x86_64-apple-darwin11.0.0 -emit-llvm -o - %s | FileCheck %s

enum MyEnum : char;
void bar(MyEnum value) { }

// CHECK-LABEL: define void @_Z3foo6MyEnum
void foo(MyEnum value)
{
  // CHECK: call void @_Z3bar6MyEnum(i8 signext
  bar(value);
}