diff options
author | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2013-02-28 08:42:11 +0000 |
---|---|---|
committer | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2013-02-28 08:42:11 +0000 |
commit | 14eadeda001cf5bcf0d8845e26db93c242bf9fd4 (patch) | |
tree | 1ec1a34a5f9dd59f20c2cd860e9813042d30ac2e | |
parent | 9bf3e3972d5a5dbbe7fa5614b3cb3cc3422b45ec (diff) | |
download | external_llvm-14eadeda001cf5bcf0d8845e26db93c242bf9fd4.zip external_llvm-14eadeda001cf5bcf0d8845e26db93c242bf9fd4.tar.gz external_llvm-14eadeda001cf5bcf0d8845e26db93c242bf9fd4.tar.bz2 |
Remove unused leftover declarations.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@176240 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Transforms/Instrumentation/MemorySanitizer.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/Transforms/Instrumentation/MemorySanitizer.cpp b/lib/Transforms/Instrumentation/MemorySanitizer.cpp index 80705af..b88d641 100644 --- a/lib/Transforms/Instrumentation/MemorySanitizer.cpp +++ b/lib/Transforms/Instrumentation/MemorySanitizer.cpp @@ -420,11 +420,6 @@ struct MemorySanitizerVisitor : public InstVisitor<MemorySanitizerVisitor> { bool InsertChecks; OwningPtr<VarArgHelper> VAHelper; - // An unfortunate workaround for asymmetric lowering of va_arg stuff. - // See a comment in visitCallSite for more details. - static const unsigned AMD64GpEndOffset = 48; // AMD64 ABI Draft 0.99.6 p3.5.7 - static const unsigned AMD64FpEndOffset = 176; - struct ShadowOriginAndInsertPoint { Instruction *Shadow; Instruction *Origin; |