diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2016-08-23 22:10:46 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2016-08-23 22:10:46 +0000 |
commit | eae6138936478d345e3ef14fcba85429042821ee (patch) | |
tree | cda75fad6adf6a14008e7918820670b6f018c9e9 /llvm/lib/CodeGen/StackMaps.cpp | |
parent | 8c3fbdc6c4649f8c3c018cf32be4407c672e574c (diff) | |
download | bcm5719-llvm-eae6138936478d345e3ef14fcba85429042821ee.tar.gz bcm5719-llvm-eae6138936478d345e3ef14fcba85429042821ee.zip |
Remove unused data member to unbreak -Werror builds.
llvm-svn: 279581
Diffstat (limited to 'llvm/lib/CodeGen/StackMaps.cpp')
-rw-r--r-- | llvm/lib/CodeGen/StackMaps.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/StackMaps.cpp b/llvm/lib/CodeGen/StackMaps.cpp index 7d5e20c281f..9e6df468341 100644 --- a/llvm/lib/CodeGen/StackMaps.cpp +++ b/llvm/lib/CodeGen/StackMaps.cpp @@ -35,8 +35,7 @@ static cl::opt<int> StackMapVersion( const char *StackMaps::WSMP = "Stack Maps: "; -StackMapOpers::StackMapOpers(const MachineInstr *MI) - : MI(MI) { +StackMapOpers::StackMapOpers(const MachineInstr *MI) { assert(getVarIdx() <= MI->getNumOperands() && "invalid stackmap definition"); } |