diff options
author | Nadav Rotem <nrotem@apple.com> | 2012-12-21 05:02:12 +0000 |
---|---|---|
committer | Nadav Rotem <nrotem@apple.com> | 2012-12-21 05:02:12 +0000 |
commit | 042a9a2666690d0170964df3d0b042b7bc4651d5 (patch) | |
tree | 660a73586fe94c8b1e1754a67d7901e728f856ce /lib/Target/X86/X86ISelLowering.h | |
parent | ebf395d39ee81d1635783688dbc49ff86c24e7e6 (diff) | |
download | external_llvm-042a9a2666690d0170964df3d0b042b7bc4651d5.zip external_llvm-042a9a2666690d0170964df3d0b042b7bc4651d5.tar.gz external_llvm-042a9a2666690d0170964df3d0b042b7bc4651d5.tar.bz2 |
Add a missing "virtual" keyword.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170842 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86ISelLowering.h')
-rw-r--r-- | lib/Target/X86/X86ISelLowering.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/X86/X86ISelLowering.h b/lib/Target/X86/X86ISelLowering.h index 72cd3b3..3d234eb 100644 --- a/lib/Target/X86/X86ISelLowering.h +++ b/lib/Target/X86/X86ISelLowering.h @@ -960,8 +960,8 @@ namespace llvm { virtual unsigned getVectorInstrCost(unsigned Opcode, Type *Val, unsigned Index) const; - unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy, - Type *CondTy) const; + virtual unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy, + Type *CondTy) const; virtual unsigned getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src) const; |