aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/IA64
diff options
context:
space:
mode:
authorScott Michel <scottm@aero.org>2008-03-10 23:49:09 +0000
committerScott Michel <scottm@aero.org>2008-03-10 23:49:09 +0000
commit405fba12ce4874e0b599b19168b1d29d1c64ffab (patch)
treec38229996edb1d24545511fe2783897441295efe /lib/Target/IA64
parent45f36ea448cabcbd18b1cb0e29af8c70366baf55 (diff)
downloadexternal_llvm-405fba12ce4874e0b599b19168b1d29d1c64ffab.zip
external_llvm-405fba12ce4874e0b599b19168b1d29d1c64ffab.tar.gz
external_llvm-405fba12ce4874e0b599b19168b1d29d1c64ffab.tar.bz2
- Style cleanup in IA64ISelLowering.h: add 'virtual' keyword for consistency.
- Add test pattern matching in CellSPU's icmp32.ll test harness - Fix CellSPU fcmp.ll-generated assert. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48197 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/IA64')
-rw-r--r--lib/Target/IA64/IA64ISelLowering.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Target/IA64/IA64ISelLowering.h b/lib/Target/IA64/IA64ISelLowering.h
index d0cf2a9..aef51f0 100644
--- a/lib/Target/IA64/IA64ISelLowering.h
+++ b/lib/Target/IA64/IA64ISelLowering.h
@@ -47,7 +47,9 @@ namespace llvm {
unsigned VirtGPR; // this is public so it can be accessed in the selector
// for ISD::RET. add an accessor instead? FIXME
const char *getTargetNodeName(unsigned Opcode) const;
- MVT::ValueType getSetCCResultType(const SDOperand &) const;
+
+ /// getSetCCResultType: return ISD::SETCC's result type.
+ virtual MVT::ValueType getSetCCResultType(const SDOperand &) const;
/// LowerArguments - This hook must be implemented to indicate how we should
/// lower the arguments for the specified function, into the specified DAG.