summaryrefslogtreecommitdiffstats
path: root/contrib/llvm/lib/Target/ARM/ARMFastISel.cpp
diff options
context:
space:
mode:
authordim <dim@FreeBSD.org>2011-12-09 22:23:45 +0000
committerdim <dim@FreeBSD.org>2011-12-09 22:23:45 +0000
commit0a8d9e83286f1e0207031442c8c9b143758a0a75 (patch)
tree9f786c58105dd9ad2fee073528a513777fea3e3c /contrib/llvm/lib/Target/ARM/ARMFastISel.cpp
parent1003872b67ebc3af8b693420f84097716d3b8395 (diff)
downloadFreeBSD-src-0a8d9e83286f1e0207031442c8c9b143758a0a75.zip
FreeBSD-src-0a8d9e83286f1e0207031442c8c9b143758a0a75.tar.gz
Upgrade our copy of llvm/clang to 3.0 release. Release notes can be
found at: http://llvm.org/releases/3.0/docs/ReleaseNotes.html MFC after: 1 week
Diffstat (limited to 'contrib/llvm/lib/Target/ARM/ARMFastISel.cpp')
-rw-r--r--contrib/llvm/lib/Target/ARM/ARMFastISel.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/contrib/llvm/lib/Target/ARM/ARMFastISel.cpp b/contrib/llvm/lib/Target/ARM/ARMFastISel.cpp
index 9bc7ef2..dc8e54d 100644
--- a/contrib/llvm/lib/Target/ARM/ARMFastISel.cpp
+++ b/contrib/llvm/lib/Target/ARM/ARMFastISel.cpp
@@ -1548,6 +1548,11 @@ CCAssignFn *ARMFastISel::CCAssignFnForCall(CallingConv::ID CC, bool Return) {
return (Return ? RetCC_ARM_AAPCS: CC_ARM_AAPCS);
case CallingConv::ARM_APCS:
return (Return ? RetCC_ARM_APCS: CC_ARM_APCS);
+ case CallingConv::GHC:
+ if (Return)
+ llvm_unreachable("Can't return in GHC call convention");
+ else
+ return CC_ARM_APCS_GHC;
}
}
OpenPOWER on IntegriCloud