aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGenCXX/anonymous-namespaces.cpp
AgeCommit message (Collapse)AuthorFilesLines
2013-08-15CHECK-LABEL-ify some code gen tests to improve diagnostic experience when ↵Stephen Lin1-4/+4
tests fail. llvm-svn: 188447
2013-08-12Fix FileCheck --check-prefix lines.Tim Northover1-2/+2
Various tests had sprung up over the years which had --check-prefix=ABC on the RUN line, but "CHECK-ABC:" later on. This happened to work before, but was strictly incorrect. FileCheck is getting stricter soon though. Patch by Ron Ofir. llvm-svn: 188174
2013-05-16Let CodeGenFunction::EmitVarDecl query the semantic storage class info.Enea Zaffanella1-0/+9
Added testcase corresponding to PR15991. llvm-svn: 181998
2011-02-28Add -fcxx-exceptions to all tests that use C++ exceptions.Anders Carlsson1-1/+1
llvm-svn: 126599
2011-02-19Pass -fexceptions to all tests that use try/catch/throw.Anders Carlsson1-1/+1
llvm-svn: 126037
2010-08-13Properly give unique-external linkage to members of member templatesJohn McCall1-8/+30
instantiated with unique-external parameters. llvm-svn: 111012
2010-05-06The global variable for the VTT might not have external linkage; allowDouglas Gregor1-1/+9
us to find local variables, too. Fixes the last remaining Boost.Rational failure. llvm-svn: 103203
2010-01-26If a global variable has an initializer with side effects, it can never be ↵Anders Carlsson1-0/+16
deferred (even if it's in an anonymous namespace). llvm-svn: 94525
2009-12-15Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.Daniel Dunbar1-1/+1
- This is designed to make it obvious that %clang_cc1 is a "test variable" which is substituted. It is '%clang_cc1' instead of '%clang -cc1' because it can be useful to redefine what gets run as 'clang -cc1' (for example, to set a default target). llvm-svn: 91446
2009-10-01Anonymous namespaces, sema + codegen. A lot of semantics are still broken,John McCall1-0/+22
apparently because using directives aren't quite working correctly. llvm-svn: 83184