[PATCH] D88495: [clangd] Disable msan instrumentation for generated Evaluate().
Utkarsh Saxena via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Sep 29 08:47:33 PDT 2020
This revision was automatically updated to reflect the committed changes.
Closed by commit rGa9f63d22fafb: [clangd] Disable msan instrumentation for generated Evaluate(). (authored by usaxena95).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D88495/new/
https://reviews.llvm.org/D88495
Files:
clang-tools-extra/clangd/quality/CompletionModelCodegen.py
Index: clang-tools-extra/clangd/quality/CompletionModelCodegen.py
===================================================================
--- clang-tools-extra/clangd/quality/CompletionModelCodegen.py
+++ clang-tools-extra/clangd/quality/CompletionModelCodegen.py
@@ -145,6 +145,7 @@
return """#ifndef %s
#define %s
#include <cstdint>
+#include "llvm/Support/Compiler.h"
%s
class %s {
@@ -160,6 +161,9 @@
friend float Evaluate(const %s&);
};
+// The function may have large number of lines of code. MSAN
+// build times out in such case.
+LLVM_NO_SANITIZE("memory")
float Evaluate(const %s&);
%s
#endif // %s
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D88495.295010.patch
Type: text/x-patch
Size: 625 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20200929/9083704f/attachment.bin>
More information about the cfe-commits
mailing list