From a08bca95a70fcceccc3a5f4de68e4462a95f857d Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 8 Dec 2003 05:29:33 +0000 Subject: [PATCH] Since ssaification of the varargs builtings, the vaarg instruction no longer can write to memory. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10310 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/iOther.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/llvm/iOther.h b/include/llvm/iOther.h index 8ecf6b02697..7a529557c5a 100644 --- a/include/llvm/iOther.h +++ b/include/llvm/iOther.h @@ -187,8 +187,6 @@ public: virtual Instruction *clone() const { return new VAArgInst(*this); } - bool mayWriteToMemory() const { return true; } - // Methods for support type inquiry through isa, cast, and dyn_cast: static inline bool classof(const VAArgInst *) { return true; } static inline bool classof(const Instruction *I) {