[cfe-commits] r123118 - /cfe/trunk/lib/CodeGen/CGBuiltin.cpp
Benjamin Kramer
benny.kra at googlemail.com
Sun Jan 9 05:21:33 PST 2011
Author: d0k
Date: Sun Jan 9 07:21:33 2011
New Revision: 123118
URL: http://llvm.org/viewvc/llvm-project?rev=123118&view=rev
Log:
Make a helper function static.
Modified:
cfe/trunk/lib/CodeGen/CGBuiltin.cpp
Modified: cfe/trunk/lib/CodeGen/CGBuiltin.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGBuiltin.cpp?rev=123118&r1=123117&r2=123118&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CGBuiltin.cpp (original)
+++ cfe/trunk/lib/CodeGen/CGBuiltin.cpp Sun Jan 9 07:21:33 2011
@@ -1034,7 +1034,8 @@
}
}
-const llvm::VectorType *GetNeonType(LLVMContext &C, unsigned type, bool q) {
+static const llvm::VectorType *GetNeonType(LLVMContext &C, unsigned type,
+ bool q) {
switch (type) {
default: break;
case 0:
More information about the cfe-commits
mailing list