summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortstellar <tstellar@91177308-0d34-0410-b5e6-96231b3b80d8>2013-02-08 22:24:40 +0000
committerTom Stellard <thomas.stellard@amd.com>2013-02-08 22:58:41 +0000
commitb53ed4690dc6d5ca49e8656868e97b36f25fb0a3 (patch)
treeffdd55a1cfc239271126be6cffbe5401de364013
parent4f0a34e93e0c78320545f7a31fd35c7efc597d1a (diff)
R600: Dump the function name when TargetLowering::LowerCall() fails
Also output a more useful error message. NOTE: This is a candidate for the Mesa stable branch git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174763 91177308-0d34-0410-b5e6-96231b3b80d8 (cherry picked from commit a525c98b8a871d706291222d53cb137798f612f6)
-rw-r--r--lib/Target/R600/AMDGPUISelLowering.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/Target/R600/AMDGPUISelLowering.h b/lib/Target/R600/AMDGPUISelLowering.h
index 927ed09b463..4b844a3ff3a 100644
--- a/lib/Target/R600/AMDGPUISelLowering.h
+++ b/lib/Target/R600/AMDGPUISelLowering.h
@@ -53,6 +53,11 @@ public:
const SmallVectorImpl<ISD::OutputArg> &Outs,
const SmallVectorImpl<SDValue> &OutVals,
DebugLoc DL, SelectionDAG &DAG) const;
+ virtual SDValue LowerCall(CallLoweringInfo &CLI,
+ SmallVectorImpl<SDValue> &InVals) const {
+ CLI.Callee.dump();
+ llvm_unreachable("Undefined function");
+ }
virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const;
SDValue LowerIntrinsicIABS(SDValue Op, SelectionDAG &DAG) const;