aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2010-10-22 18:57:05 +0000
committerEvan Cheng <evan.cheng@apple.com>2010-10-22 18:57:05 +0000
commit1f8b40d51c0e1bb7fce5a69c2fadc656bfef3092 (patch)
tree2d1fce3d7b1c69f147c0dac12b74bfe1c646fbd4 /lib
parent18341e9e31b95ff865530e04662f540e2cdf3382 (diff)
downloadexternal_llvm-1f8b40d51c0e1bb7fce5a69c2fadc656bfef3092.zip
external_llvm-1f8b40d51c0e1bb7fce5a69c2fadc656bfef3092.tar.gz
external_llvm-1f8b40d51c0e1bb7fce5a69c2fadc656bfef3092.tar.bz2
Silence compiler warnings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117128 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/ARM/ARMFastISel.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMFastISel.cpp b/lib/Target/ARM/ARMFastISel.cpp
index 3220789..85d28f9 100644
--- a/lib/Target/ARM/ARMFastISel.cpp
+++ b/lib/Target/ARM/ARMFastISel.cpp
@@ -1264,8 +1264,12 @@ CCAssignFn *ARMFastISel::CCAssignFnForCall(CallingConv::ID CC, bool Return) {
switch (CC) {
default:
llvm_unreachable("Unsupported calling convention");
- case CallingConv::C:
case CallingConv::Fast:
+ // Ignore fastcc. Silence compiler warnings.
+ (void)RetFastCC_ARM_APCS;
+ (void)FastCC_ARM_APCS;
+ // Fallthrough
+ case CallingConv::C:
// Use target triple & subtarget features to do actual dispatch.
if (Subtarget->isAAPCS_ABI()) {
if (Subtarget->hasVFP2() &&