diff options
| author | Stuart Hastings <stuart@apple.com> | 2011-02-23 02:27:05 +0000 |
|---|---|---|
| committer | Stuart Hastings <stuart@apple.com> | 2011-02-23 02:27:05 +0000 |
| commit | 5129bdecd87c518713765acd6998c80f9eef36a2 (patch) | |
| tree | 8ccf84fa15a9b010e233e1884cf2e1bacf369f10 /include/llvm/CodeGen | |
| parent | e573fb32556ba8430ccd723f71233cdf56b76340 (diff) | |
Omit private_extern declarations of extern symbols; followup to
r124468. Patch by Rafael Avila de Espindola!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@126297 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen')
| -rw-r--r-- | include/llvm/CodeGen/AsmPrinter.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/AsmPrinter.h b/include/llvm/CodeGen/AsmPrinter.h index 357b933db5..a071febb10 100644 --- a/include/llvm/CodeGen/AsmPrinter.h +++ b/include/llvm/CodeGen/AsmPrinter.h @@ -445,7 +445,8 @@ namespace llvm { /// EmitVisibility - This emits visibility information about symbol, if /// this is suported by the target. - void EmitVisibility(MCSymbol *Sym, unsigned Visibility) const; + void EmitVisibility(MCSymbol *Sym, unsigned Visibility, + bool IsDefinition = true) const; void EmitLinkage(unsigned Linkage, MCSymbol *GVSym) const; |
