repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[Clang] replace 'bitfield' with 'bit-field' for consistency (#117881)
[llvm-project.git]
/
clang
/
test
/
CodeGenCXX
/
debug-info-method-nodebug.cpp
blob
0301e2f489475c3c56d044db0cc43ec500c064bc
1
// RUN: %clang_cc1 -emit-llvm -debug-info-kind=limited %s -o - | FileCheck %s
2
3
class
C
{
4
void
present
();
5
void
absent
()
__attribute__
((
nodebug
));
6
};
7
8
C c
;
9
10
// CHECK-NOT: name: "absent"
11
// CHECK: name: "present"
12
// CHECK-NOT: name: "absent"