1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

remove a dead variable, PR6856

llvm-svn: 101648
This commit is contained in:
Chris Lattner 2010-04-17 17:28:00 +00:00
parent 80a22bfcdb
commit 99878c7ca4

View File

@ -26,7 +26,6 @@ using namespace llvm;
X86ELFWriterInfo::X86ELFWriterInfo(TargetMachine &TM)
: TargetELFWriterInfo(TM) {
bool is64Bit = TM.getTargetData()->getPointerSizeInBits() == 64;
EMachine = is64Bit ? EM_X86_64 : EM_386;
}