mirror of
https://github.com/opnsense/src.git
synced 2026-03-20 01:35:49 -04:00
12 lines
247 B
C++
12 lines
247 B
C++
// RUN: %clang_cc1 -emit-llvm -debug-info-kind=limited %s -o - | FileCheck %s
|
|
|
|
class C {
|
|
void present();
|
|
void absent() __attribute__((nodebug));
|
|
};
|
|
|
|
C c;
|
|
|
|
// CHECK-NOT: name: "absent"
|
|
// CHECK: name: "present"
|
|
// CHECK-NOT: name: "absent"
|