diff options
| author | NAKAMURA Takumi <geek4civic@gmail.com> | 2014-12-04 00:26:39 +0000 | 
|---|---|---|
| committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2014-12-04 00:26:39 +0000 | 
| commit | 597fbb52306ce1de32c74ad25e177fec8ccee24a (patch) | |
| tree | 74ec19bfbe2902f9952db98e19e4e85c02c32f82 /llvm/lib | |
| parent | 6574e111451338ea184dae2a1b773528f5b3d2a0 (diff) | |
| download | bcm5719-llvm-597fbb52306ce1de32c74ad25e177fec8ccee24a.tar.gz bcm5719-llvm-597fbb52306ce1de32c74ad25e177fec8ccee24a.zip  | |
HexagonMCInst.h: Qualify constants explicitly to appease msc17.
llvm-svn: 223325
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInst.h | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInst.h b/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInst.h index 591109221d5..e8d95537235 100644 --- a/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInst.h +++ b/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInst.h @@ -45,10 +45,10 @@ public:    void setPacketBegin(bool Y);    bool isPacketBegin() const; -  size_t const packetBeginIndex = 0; +  static const size_t packetBeginIndex = 0;    void setPacketEnd(bool Y);    bool isPacketEnd() const; -  size_t const packetEndIndex = 1; +  static const size_t packetEndIndex = 1;    void resetPacket();    // Return the slots used by the insn.  | 

