aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGenCXX/debug-info-nodebug.cpp
AgeCommit message (Collapse)AuthorFilesLines
2016-06-16Allow 'nodebug' on local variables.Paul Robinson1-1/+4
Parameters and non-static members of aggregates are still excluded, and probably should remain that way. Differential Revision: http://reviews.llvm.org/D19754 llvm-svn: 272859
2016-04-28Make the test exercise all paths modified in r267746.Paul Robinson1-1/+7
llvm-svn: 267909
2016-04-27Minor test simplification (per David Blaikie suggestion).Paul Robinson1-14/+5
llvm-svn: 267804
2016-04-27PR21823: 'nodebug' attribute on global/static variables.Paul Robinson1-0/+55
Make 'nodebug' on a global/static variable suppress all debug info for the variable. Previously it would only suppress info for the associated initializer function, if any. Differential Revision: http://reviews.llvm.org/D19567 llvm-svn: 267746