Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
a76a7c902ad4daa8b8d20f73ee2ed5e6f3d63d9b
/
.
/
clang
/
test
/
CodeGenCXX
/
debug-info-method.cpp
blob: 74e44d1072808870595371acb9c359704c50fe4f [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -emit-llvm -g %s -o - | FileCheck %s
// CHECK: metadata !"_ZN1A3fooEi", {{.*}}, i32 258
// CHECK: ""{{.*}}DW_TAG_arg_variable
class
A
{
protected
:
void
foo
(
int
);
};
void
A
::
foo
(
int
)
{
}
A a
;