summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2014-10-27 23:29:27 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2014-10-27 23:29:27 +0000
commit949fb6d276d5539ecbd8b95a00fd93cc6959b396 (patch)
tree85cf3476a2ee7c82599fdfc0feab51cbe45697a5
parent79c98cc9fcae2d98b22945e23d149eadad823f0c (diff)
downloadbcm5719-llvm-949fb6d276d5539ecbd8b95a00fd93cc6959b396.tar.gz
bcm5719-llvm-949fb6d276d5539ecbd8b95a00fd93cc6959b396.zip
AArch64InstrInfo.h: Fix a warning introduced in clang r220703. [-Winconsistent-missing-override]
llvm-svn: 220739
-rw-r--r--llvm/lib/Target/AArch64/AArch64InstrInfo.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/AArch64/AArch64InstrInfo.h b/llvm/lib/Target/AArch64/AArch64InstrInfo.h
index 1993b53cfc3..30bf6500331 100644
--- a/llvm/lib/Target/AArch64/AArch64InstrInfo.h
+++ b/llvm/lib/Target/AArch64/AArch64InstrInfo.h
@@ -165,7 +165,7 @@ public:
bool optimizeCompareInstr(MachineInstr *CmpInstr, unsigned SrcReg,
unsigned SrcReg2, int CmpMask, int CmpValue,
const MachineRegisterInfo *MRI) const override;
- bool optimizeCondBranch(MachineInstr *MI) const;
+ bool optimizeCondBranch(MachineInstr *MI) const override;
/// hasPattern - return true when there is potentially a faster code sequence
/// for an instruction chain ending in <Root>. All potential patterns are
/// listed
OpenPOWER on IntegriCloud