<html>
<head>
<base href="https://llvm.org/bugs/" />
</head>
<body><table border="1" cellspacing="0" cellpadding="8">
<tr>
<th>Bug ID</th>
<td><a class="bz_bug_link
bz_status_ASSIGNED "
title="ASSIGNED --- - relocation refers to discarded section"
href="https://llvm.org/bugs/show_bug.cgi?id=23196">23196</a>
</td>
</tr>
<tr>
<th>Summary</th>
<td>relocation refers to discarded section
</td>
</tr>
<tr>
<th>Product</th>
<td>libraries
</td>
</tr>
<tr>
<th>Version</th>
<td>trunk
</td>
</tr>
<tr>
<th>Hardware</th>
<td>PC
</td>
</tr>
<tr>
<th>OS</th>
<td>Linux
</td>
</tr>
<tr>
<th>Status</th>
<td>ASSIGNED
</td>
</tr>
<tr>
<th>Severity</th>
<td>normal
</td>
</tr>
<tr>
<th>Priority</th>
<td>P
</td>
</tr>
<tr>
<th>Component</th>
<td>MC
</td>
</tr>
<tr>
<th>Assignee</th>
<td>rafael.espindola@gmail.com
</td>
</tr>
<tr>
<th>Reporter</th>
<td>rafael.espindola@gmail.com
</td>
</tr>
<tr>
<th>CC</th>
<td>llvmbugs@cs.uiuc.edu
</td>
</tr>
<tr>
<th>Classification</th>
<td>Unclassified
</td>
</tr></table>
<p>
<div>
<pre>$ cat test.ll
$zed = comdat any
@bar = internal global i8 42, comdat($zed)
@bah = alias i8* @bar
define i8* @foo() {
ret i8* @bah
}
$ cat test2.ll
$zed = comdat any
@bar = internal global i8 42, comdat($zed)
@bah = alias i8* @bar
define i8* @foo2() {
ret i8* @bah
}
define i32 @main() {
ret i32 0
}
$ ./build/bin/llc test2.ll -o test2.o -filetype=obj
$ ./build/bin/llc test.ll -o test.o -filetype=obj
$ clang test.o test2.o -o foo
test2.o:test2.ll:function foo2: warning: relocation refers to discarded section</pre>
</div>
</p>
<hr>
<span>You are receiving this mail because:</span>
<ul>
<li>You are on the CC list for the bug.</li>
</ul>
</body>
</html>