aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/CBackend/CBackend.cpp
diff options
context:
space:
mode:
authorSandeep Patel <deeppatel1987@gmail.com>2009-09-02 08:44:58 +0000
committerSandeep Patel <deeppatel1987@gmail.com>2009-09-02 08:44:58 +0000
commit5838baa4a8aedfd453a5b0663425979c77e4e285 (patch)
treeeb867222ef634a613f0f8df64edac4e1b46eb638 /lib/Target/CBackend/CBackend.cpp
parent7c3d6c1f0cacdc5a01a66ce5f99e09848f0d58f3 (diff)
downloadexternal_llvm-5838baa4a8aedfd453a5b0663425979c77e4e285.zip
external_llvm-5838baa4a8aedfd453a5b0663425979c77e4e285.tar.gz
external_llvm-5838baa4a8aedfd453a5b0663425979c77e4e285.tar.bz2
Retype from unsigned to CallingConv::ID accordingly. Approved by Bob Wilson.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80773 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/CBackend/CBackend.cpp')
-rw-r--r--lib/Target/CBackend/CBackend.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Target/CBackend/CBackend.cpp b/lib/Target/CBackend/CBackend.cpp
index 29764aa..fe63edf 100644
--- a/lib/Target/CBackend/CBackend.cpp
+++ b/lib/Target/CBackend/CBackend.cpp
@@ -2283,6 +2283,8 @@ void CWriter::printFunctionSignature(const Function *F, bool Prototype) {
case CallingConv::X86_FastCall:
Out << "__attribute__((fastcall)) ";
break;
+ default:
+ break;
}
// Loop over the arguments, printing them...