aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/PowerPC
diff options
context:
space:
mode:
authorNicolas Geoffray <nicolas.geoffray@lip6.fr>2007-12-21 12:22:29 +0000
committerNicolas Geoffray <nicolas.geoffray@lip6.fr>2007-12-21 12:22:29 +0000
commit5a6c91a3eceb701396c30dd126079903006c5e0b (patch)
tree9380454ee76782d1c2da74224a652b0fddd9f8f3 /lib/Target/PowerPC
parent616585bbff926d806f154a0ae45f327c63abe54f (diff)
downloadexternal_llvm-5a6c91a3eceb701396c30dd126079903006c5e0b.zip
external_llvm-5a6c91a3eceb701396c30dd126079903006c5e0b.tar.gz
external_llvm-5a6c91a3eceb701396c30dd126079903006c5e0b.tar.bz2
Fix unintented change from last commit
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45282 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC')
-rw-r--r--lib/Target/PowerPC/PPCISelLowering.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/PowerPC/PPCISelLowering.cpp b/lib/Target/PowerPC/PPCISelLowering.cpp
index 411899c..6f0a7b1 100644
--- a/lib/Target/PowerPC/PPCISelLowering.cpp
+++ b/lib/Target/PowerPC/PPCISelLowering.cpp
@@ -1769,9 +1769,9 @@ static SDOperand LowerCALL(SDOperand Op, SelectionDAG &DAG,
// If the callee is a GlobalAddress/ExternalSymbol node (quite common, every
// direct call is) turn it into a TargetGlobalAddress/TargetExternalSymbol
// node so that legalize doesn't hack it.
- //if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
- // Callee = DAG.getTargetGlobalAddress(G->getGlobal(), Callee.getValueType());
- if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee))
+ if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
+ Callee = DAG.getTargetGlobalAddress(G->getGlobal(), Callee.getValueType());
+ else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee))
Callee = DAG.getTargetExternalSymbol(S->getSymbol(), Callee.getValueType());
else if (SDNode *Dest = isBLACompatibleAddress(Callee, DAG))
// If this is an absolute destination address, use the munged value.