summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2011-10-17 21:18:03 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2011-10-17 21:18:03 +0000
commitb006337bb8217d5c3def4001cbd978a848557882 (patch)
treedfd8fdaa00067499f6cc64b450a8fdae8decc6bd /include
parent698f3b068fabe42bc775ebf6a964b7de9dcd2b75 (diff)
downloadllvm-b006337bb8217d5c3def4001cbd978a848557882.tar.gz
llvm-b006337bb8217d5c3def4001cbd978a848557882.tar.bz2
llvm-b006337bb8217d5c3def4001cbd978a848557882.tar.xz
MCOperand is pod-like.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142253 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/MC/MCInst.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/MC/MCInst.h b/include/llvm/MC/MCInst.h
index d384764774..a5e4632b2e 100644
--- a/include/llvm/MC/MCInst.h
+++ b/include/llvm/MC/MCInst.h
@@ -123,6 +123,7 @@ public:
void dump() const;
};
+template <> struct isPodLike<MCOperand> { static const bool value = true; };
/// MCInst - Instances of this class represent a single low-level machine
/// instruction.