Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
d5313b0bbf3948fe7c63bf46a7da330c96d07309
/
.
/
test
/
CodeGenObjC
/
debug-info-fnname.m
blob: f336d6b268757388b5fa4176c5486f5b5c453294 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -emit-llvm -Os -g %s -o - | FileCheck %s
// Radar 8653152
@interface
A
{
}
@end
// CHECK: llvm.dbg.lv.-.A.title.
@implementation
A
-(
int
)
title
{
int
x
=
1
;
return
x
;
}
@end