annotate clang/test/SemaCXX/attr-nodebug.cpp @ 222:81f6424ef0e3 llvm-original

LLVM original branch
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sun, 18 Jul 2021 22:10:01 +0900
parents 1d019706d866
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
150
anatofuz
parents:
diff changeset
1 // RUN: %clang_cc1 %s -std=c++11 -verify -fsyntax-only
anatofuz
parents:
diff changeset
2 // Note: most of the 'nodebug' tests are in attr-nodebug.c.
anatofuz
parents:
diff changeset
3
anatofuz
parents:
diff changeset
4 // expected-no-diagnostics
anatofuz
parents:
diff changeset
5 class c {
anatofuz
parents:
diff changeset
6 void t3() __attribute__((nodebug));
anatofuz
parents:
diff changeset
7 };
anatofuz
parents:
diff changeset
8
anatofuz
parents:
diff changeset
9 [[gnu::nodebug]] void f() {}