[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:38:27 PDT 2020
usaxena95 updated this revision to Diff 295005.
usaxena95 added a comment.
Addressed comments.
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.295005.patch
Type: text/x-patch
Size: 625 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20200929/143877e0/attachment.bin>
More information about the cfe-commits
mailing list