brintos

brintos / llvm-project-archived public Read only

0
0
Text · 293 B · 9d6a618 Raw
12 lines · cpp
1// RUN: %clang_cc1 -std=c++11 -triple x86_64-apple-darwin11.0.0 -emit-llvm -o - %s | FileCheck %s2 3enum MyEnum : char;4void bar(MyEnum value) { }5 6// CHECK-LABEL: define{{.*}} void @_Z3foo6MyEnum7void foo(MyEnum value)8{9  // CHECK: call void @_Z3bar6MyEnum(i8 noundef signext10  bar(value);11}12