[PATCH] D52451: Add macro LLVM_ATTRIBUTE_REINITIALIZES

Fangrui Song via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Sep 25 01:08:16 PDT 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rL342949: Add macro LLVM_ATTRIBUTE_REINITIALIZES (authored by MaskRay, committed by ).

Repository:
  rL LLVM

https://reviews.llvm.org/D52451

Files:
  llvm/trunk/include/llvm/Support/Compiler.h


Index: llvm/trunk/include/llvm/Support/Compiler.h
===================================================================
--- llvm/trunk/include/llvm/Support/Compiler.h
+++ llvm/trunk/include/llvm/Support/Compiler.h
@@ -133,6 +133,19 @@
 #define LLVM_NODISCARD
 #endif
 
+// Indicate that a non-static, non-const C++ member function reinitializes
+// the entire object to a known state, independent of the previous state of
+// the object.
+//
+// The clang-tidy check bugprone-use-after-move recognizes this attribute as a
+// marker that a moved-from object has left the indeterminate state and can be
+// reused.
+#if __has_cpp_attribute(clang::reinitializes)
+#define LLVM_ATTRIBUTE_REINITIALIZES [[clang::reinitializes]]
+#else
+#define LLVM_ATTRIBUTE_REINITIALIZES
+#endif
+
 // Some compilers warn about unused functions. When a function is sometimes
 // used or not depending on build settings (e.g. a function only called from
 // within "assert"), this attribute can be used to suppress such warnings.


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D52451.166823.patch
Type: text/x-patch
Size: 1008 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180925/d846ef4c/attachment.bin>


More information about the llvm-commits mailing list