[llvm-commits] [llvm] r142253 - /llvm/trunk/include/llvm/MC/MCInst.h

Benjamin Kramer benny.kra at googlemail.com
Mon Oct 17 14:18:03 PDT 2011


Author: d0k
Date: Mon Oct 17 16:18:03 2011
New Revision: 142253

URL: http://llvm.org/viewvc/llvm-project?rev=142253&view=rev
Log:
MCOperand is pod-like.

Modified:
    llvm/trunk/include/llvm/MC/MCInst.h

Modified: llvm/trunk/include/llvm/MC/MCInst.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/MC/MCInst.h?rev=142253&r1=142252&r2=142253&view=diff
==============================================================================
--- llvm/trunk/include/llvm/MC/MCInst.h (original)
+++ llvm/trunk/include/llvm/MC/MCInst.h Mon Oct 17 16:18:03 2011
@@ -123,6 +123,7 @@
   void dump() const;
 };
 
+template <> struct isPodLike<MCOperand> { static const bool value = true; };
 
 /// MCInst - Instances of this class represent a single low-level machine
 /// instruction.





More information about the llvm-commits mailing list