Inside the calling convention logic LocVT is always a simple
authorDuncan Sands <baldrick@free.fr>
Wed, 3 Nov 2010 11:35:31 +0000 (11:35 +0000)
committerDuncan Sands <baldrick@free.fr>
Wed, 3 Nov 2010 11:35:31 +0000 (11:35 +0000)
commit1440e8b918d7116c3587cb95f4f7ac7a0a0b65ad
tree667c874fcb8f88caa625225f4e45383198140e86
parentcaebdd44f3a2c89457f09d0fa45a998c912235d2
Inside the calling convention logic LocVT is always a simple
value type, so there is no point in passing it around using
an EVT.  Use the simpler MVT everywhere.  Rather than trying
to propagate this information maximally in all the code that
using the calling convention stuff, I chose to do a mainly
low impact change instead.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@118167 91177308-0d34-0410-b5e6-96231b3b80d8
16 files changed:
include/llvm/CodeGen/CallingConvLower.h
include/llvm/CodeGen/ValueTypes.h
include/llvm/Target/TargetCallingConv.h
lib/CodeGen/CallingConvLower.cpp
lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
lib/Target/ARM/ARMCallingConv.h
lib/Target/ARM/ARMFastISel.cpp
lib/Target/MBlaze/MBlazeISelLowering.cpp
lib/Target/MSP430/MSP430ISelLowering.cpp
lib/Target/Mips/MipsISelLowering.cpp
lib/Target/PTX/PTXISelLowering.cpp
lib/Target/PowerPC/PPCISelLowering.cpp
lib/Target/Sparc/SparcISelLowering.cpp
lib/Target/X86/X86FastISel.cpp
lib/Target/XCore/XCoreISelLowering.cpp
utils/TableGen/CallingConvEmitter.cpp