From 1f970dea03675e4484fa340f5c1259a67f06d93e Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 10 Oct 2009 18:26:06 +0000 Subject: [PATCH] fix broken anchors. llvm-svn: 83715 --- docs/LangRef.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/LangRef.html b/docs/LangRef.html index 38536925f2d..d07eeb8244b 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -31,7 +31,7 @@
  • 'weak' Linkage
  • 'appending' Linkage
  • 'extern_weak' Linkage
  • -
  • 'linkonce_odr' Linkage
  • +
  • 'linkonce_odr' Linkage
  • 'weak_odr' Linkage
  • 'externally visible' Linkage
  • 'dllimport' Linkage
  • @@ -586,8 +586,8 @@ define i32 @main() { ; i32()* -
    linkonce_odr:
    -
    weak_odr:
    +
    linkonce_odr:
    +
    weak_odr:
    Some languages allow differing globals to be merged, such as two functions with different semantics. Other languages, such as C++, ensure that only equivalent globals are ever merged (the "one definition rule" -