forked from OSchip/llvm-project
[StackMap] Current stackmap version should be 3. NFC.
llvm-svn: 371327
This commit is contained in:
parent
486b173cfe
commit
acf81f4210
|
@ -19,7 +19,7 @@
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
|
|
||||||
/// A parser for the latest stackmap format. At the moment, latest=V2.
|
/// A parser for the latest stackmap format. At the moment, latest=V3.
|
||||||
template <support::endianness Endianness>
|
template <support::endianness Endianness>
|
||||||
class StackMapParser {
|
class StackMapParser {
|
||||||
public:
|
public:
|
||||||
|
@ -299,7 +299,7 @@ public:
|
||||||
const uint8_t *P;
|
const uint8_t *P;
|
||||||
};
|
};
|
||||||
|
|
||||||
/// Construct a parser for a version-2 stackmap. StackMap data will be read
|
/// Construct a parser for a version-3 stackmap. StackMap data will be read
|
||||||
/// from the given array.
|
/// from the given array.
|
||||||
StackMapParser(ArrayRef<uint8_t> StackMapSection)
|
StackMapParser(ArrayRef<uint8_t> StackMapSection)
|
||||||
: StackMapSection(StackMapSection) {
|
: StackMapSection(StackMapSection) {
|
||||||
|
|
Loading…
Reference in New Issue