aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/CBackend/CBackend.cpp
diff options
context:
space:
mode:
authorJohn Criswell <criswell@uiuc.edu>2004-02-26 22:20:58 +0000
committerJohn Criswell <criswell@uiuc.edu>2004-02-26 22:20:58 +0000
commit3799eec3cfbcff0bbd7bcf2539dba52aa9af58e4 (patch)
tree74b85dc1c55dfc2d39beebe7bf977f28467f4c37 /lib/Target/CBackend/CBackend.cpp
parentcb582406dda123ad6478fb1601814d8e5fab1fcd (diff)
downloadexternal_llvm-3799eec3cfbcff0bbd7bcf2539dba52aa9af58e4.zip
external_llvm-3799eec3cfbcff0bbd7bcf2539dba52aa9af58e4.tar.gz
external_llvm-3799eec3cfbcff0bbd7bcf2539dba52aa9af58e4.tar.bz2
Fixes for PR258 and PR259.
Functions with linkonce linkage are declared with weak linkage. Global floating point constants used to represent unprintable values (such as NaN and infinity) are declared static so that they don't interfere with other CBE generated translation units. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11884 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/CBackend/CBackend.cpp')
-rw-r--r--lib/Target/CBackend/CBackend.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/CBackend/CBackend.cpp b/lib/Target/CBackend/CBackend.cpp
index 89819da..396cc69 100644
--- a/lib/Target/CBackend/CBackend.cpp
+++ b/lib/Target/CBackend/CBackend.cpp
@@ -690,6 +690,7 @@ bool CWriter::doInitialization(Module &M) {
if (!I->getIntrinsicID()) {
printFunctionSignature(I, true);
if (I->hasWeakLinkage()) Out << " __ATTRIBUTE_WEAK__";
+ if (I->hasLinkOnceLinkage()) Out << " __ATTRIBUTE_WEAK__";
Out << ";\n";
}
}
@@ -788,12 +789,12 @@ void CWriter::printFloatingPointConstants(Module &M) {
if (FPC->getType() == Type::DoubleTy) {
DBLUnion.D = Val;
- Out << "const ConstantDoubleTy FPConstant" << FPCounter++
+ Out << "static const ConstantDoubleTy FPConstant" << FPCounter++
<< " = 0x" << std::hex << DBLUnion.U << std::dec
<< "ULL; /* " << Val << " */\n";
} else if (FPC->getType() == Type::FloatTy) {
FLTUnion.F = Val;
- Out << "const ConstantFloatTy FPConstant" << FPCounter++
+ Out << "static const ConstantFloatTy FPConstant" << FPCounter++
<< " = 0x" << std::hex << FLTUnion.U << std::dec
<< "U; /* " << Val << " */\n";
} else
@@ -890,7 +891,6 @@ void CWriter::printContainedStructs(const Type *Ty,
void CWriter::printFunctionSignature(const Function *F, bool Prototype) {
if (F->hasInternalLinkage()) Out << "static ";
- if (F->hasLinkOnceLinkage()) Out << "inline ";
// Loop over the arguments, printing them...
const FunctionType *FT = cast<FunctionType>(F->getFunctionType());