summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2011-11-15 01:23:22 +0000
committerNick Lewycky <nicholas@mxc.ca>2011-11-15 01:23:22 +0000
commite7c1aef2b824f29ea92b2b324975915fe2115fa4 (patch)
treed563b72d4c6a85ac14ccda4f84faddcdb7ef3185 /include
parentc2ecf3efbf375fc82bb1cea6afd7448498f9ae75 (diff)
downloadllvm-e7c1aef2b824f29ea92b2b324975915fe2115fa4.tar.gz
llvm-e7c1aef2b824f29ea92b2b324975915fe2115fa4.tar.bz2
llvm-e7c1aef2b824f29ea92b2b324975915fe2115fa4.tar.xz
Move WEAK marking to the declaration.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@144603 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Support/Valgrind.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/include/llvm/Support/Valgrind.h b/include/llvm/Support/Valgrind.h
index 0ecd33b6dd..9b8d277ecc 100644
--- a/include/llvm/Support/Valgrind.h
+++ b/include/llvm/Support/Valgrind.h
@@ -24,14 +24,12 @@
// tsan (Thread Sanitizer) is a valgrind-based tool that detects these exact
// functions by name.
extern "C" {
-LLVM_ATTRIBUTE_NOINLINE void AnnotateHappensAfter(const char *file, int line,
- const volatile void *cv);
-LLVM_ATTRIBUTE_NOINLINE void AnnotateHappensBefore(const char *file, int line,
- const volatile void *cv);
-LLVM_ATTRIBUTE_NOINLINE void AnnotateIgnoreWritesBegin(const char *file,
- int line);
-LLVM_ATTRIBUTE_NOINLINE void AnnotateIgnoreWritesEnd(const char *file,
- int line);
+LLVM_ATTRIBUTE_WEAK void AnnotateHappensAfter(const char *file, int line,
+ const volatile void *cv);
+LLVM_ATTRIBUTE_WEAK void AnnotateHappensBefore(const char *file, int line,
+ const volatile void *cv);
+LLVM_ATTRIBUTE_WEAK void AnnotateIgnoreWritesBegin(const char *file, int line);
+LLVM_ATTRIBUTE_WEAK void AnnotateIgnoreWritesEnd(const char *file, int line);
}
#endif