printName is almost always true. In the cases that mattered where it was false,
authorChris Lattner <sabre@nondot.org>
Wed, 6 Dec 2006 06:24:27 +0000 (06:24 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 6 Dec 2006 06:24:27 +0000 (06:24 +0000)
commit2fcfdb79d0d1d2297d7aced11b567cd52494604e
tree3ee447a4a8fe5085ab5652b2808215004791a506
parent3749c9cae41d2e682f67a41b07e0c50b46dbb000
printName is almost always true.  In the cases that mattered where it was false,
it was effectively set to true by this:

-  if ((PrintName || isa<GlobalValue>(V)) && V->hasName())
+  if (V->hasName())

Delete printname entirely.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32265 91177308-0d34-0410-b5e6-96231b3b80d8
lib/VMCore/AsmWriter.cpp