[docs] Remove the dso_local tag from these functions.

The sphinx build bot is erroring on these examples for some unknown
reason, and really the dso_local doesn't seem to be relevant to the
example in any way so its cleaner to omit it. And now they will look
a bit more like other (successful) IR examples.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@338998 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chandler Carruth
2018-08-06 10:03:25 +00:00
parent 86b1509b59
commit f6ba2bc74b
+2 -2
View File
@@ -1495,7 +1495,7 @@ For example, here is a module before:
.. code-block:: llvm
define dso_local void @f(i32* %x) {
define void @f(i32* %x) {
entry:
%x.addr = alloca i32*, align 8
store i32* %x, i32** %x.addr, align 8
@@ -1508,7 +1508,7 @@ and after running ``opt -debugify`` on it we get:
.. code-block:: llvm
define dso_local void @f(i32* %x) !dbg !6 {
define void @f(i32* %x) !dbg !6 {
entry:
%x.addr = alloca i32*, align 8, !dbg !12
call void @llvm.dbg.value(metadata i32** %x.addr, metadata !9, metadata !DIExpression()), !dbg !12