1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Delete dead code.

GV is never used past this point. This was probably a copy and paste error.

llvm-svn: 209518
This commit is contained in:
Rafael Espindola 2014-05-23 15:07:51 +00:00
parent 0a46c1f632
commit c609927ea8

View File

@ -8945,10 +8945,6 @@ X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
// Windows 64bit: gs:0x58
// Windows 32bit: fs:__tls_array
// If GV is an alias then use the aliasee for determining
// thread-localness.
if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
GV = GA->getAliasee();
SDLoc dl(GA);
SDValue Chain = DAG.getEntryNode();