aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2009-11-13 23:08:47 +0000
committerEric Christopher <echristo@apple.com>2009-11-13 23:08:47 +0000
commita974c30e47670933e452a2eaa35ecacbcedae572 (patch)
tree2d88cf4ef1be93e061a1b3b7d336b51c6b0b435b /lib/VMCore
parente9d5a80c80238bf6b3fce6507ba8a9568bc5b093 (diff)
downloadexternal_llvm-a974c30e47670933e452a2eaa35ecacbcedae572.zip
external_llvm-a974c30e47670933e452a2eaa35ecacbcedae572.tar.gz
external_llvm-a974c30e47670933e452a2eaa35ecacbcedae572.tar.bz2
Remove extraneous commit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@88716 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore')
-rw-r--r--lib/VMCore/AsmWriter.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/VMCore/AsmWriter.cpp b/lib/VMCore/AsmWriter.cpp
index 4954522..6bd263e 100644
--- a/lib/VMCore/AsmWriter.cpp
+++ b/lib/VMCore/AsmWriter.cpp
@@ -1514,11 +1514,6 @@ static void PrintVisibility(GlobalValue::VisibilityTypes Vis,
}
void AssemblyWriter::printGlobal(const GlobalVariable *GV) {
- // If we're going to print a global that has GhostLinkage
- // materialize it now.
- if (GV->getLinkage() == GlobalValue::GhostLinkage) {
- }
-
WriteAsOperandInternal(Out, GV, &TypePrinter, &Machine);
Out << " = ";