Add a FIXME to move IsLittleEndian to the target machine.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@229472 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Christopher 2015-02-17 06:45:17 +00:00
parent fb031eee53
commit c93485635f

View File

@ -130,6 +130,7 @@ void PPCSubtarget::initSubtargetFeatures(StringRef CPU, StringRef FS) {
StackAlignment = 32;
// Determine endianness.
// FIXME: Part of the TargetMachine.
IsLittleEndian = (TargetTriple.getArch() == Triple::ppc64le);
}