Mercurial > hg > CbC > CbC_llvm
annotate clang/test/CodeGenCXX/forward-enum.cpp @ 150:1d019706d866
LLVM10
author | anatofuz |
---|---|
date | Thu, 13 Feb 2020 15:10:13 +0900 |
parents | |
children | 2e18cbf3894f |
rev | line source |
---|---|
150 | 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 signext | |
10 bar(value); | |
11 } |