Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Set dso_local for guid decls. | Rafael Espindola | 2018-03-20 | 1 | -0/+2 |
| | | | | llvm-svn: 327991 | ||||
* | [MS] Don't escape MS C++ names with \01 | Reid Kleckner | 2018-03-16 | 1 | -5/+5 |
| | | | | | | | It is not needed after LLVM r327734. Now it will be easier to copy-paste IR symbol names from Clang. llvm-svn: 327738 | ||||
* | [Clang] Remove unwanted --check-prefix=CHECK from unit tests. NFC. | Mandeep Singh Grang | 2016-04-20 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Summary: Removed unwanted --check-prefix=CHECK from the following unit tests: test/CXX/special/class.copy/implicit-move-def.cpp test/CodeGen/cleanup-destslot-simple.c test/CodeGen/inline-asm-immediate-ubsan.c test/CodeGen/mips-interrupt-attr.c test/CodeGenCXX/cfi-stats.cpp test/CodeGenCXX/copy-constructor-elim.cpp test/CodeGenCXX/microsoft-templ-uuidof.cpp test/CodeGenCXX/vtable-linkage.cpp test/CodeGenObjC/messages-2.m test/Driver/noinline.c test/Index/remap-load.c test/Index/retain-comments-from-system-headers.c test/OpenMP/task_if_codegen.cpp test/Preprocessor/comment_save_macro.c Patch by: Mandeep Singh Grang (mgrang) Reviewers: rafael, ABataev, rengolin Projects: #clang-c Differential Revision: http://reviews.llvm.org/D19232 llvm-svn: 266843 | ||||
* | AST: Fix __uuidof for template specializations | David Majnemer | 2014-07-14 | 1 | -0/+37 |
While we previously supported __uuidof applied to a template specialization, we would only find the uuid attribute if it was applied to the template argument. We would erroneously ignore the uuid attribute on the specialization itself. This is required to parse Windows Runtime C++ Template Library headers. llvm-svn: 213016 |