mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-03 19:02:35 +00:00
[mips] Provide more detailed description for MIPS targets. NFC
llvm-svn: 342799
This commit is contained in:
parent
4cecbab51b
commit
ec7fbb8ed9
@ -32,17 +32,18 @@ Target &llvm::getTheMips64elTarget() {
|
||||
extern "C" void LLVMInitializeMipsTargetInfo() {
|
||||
RegisterTarget<Triple::mips,
|
||||
/*HasJIT=*/true>
|
||||
X(getTheMipsTarget(), "mips", "Mips", "Mips");
|
||||
X(getTheMipsTarget(), "mips", "MIPS (32-bit big endian)", "Mips");
|
||||
|
||||
RegisterTarget<Triple::mipsel,
|
||||
/*HasJIT=*/true>
|
||||
Y(getTheMipselTarget(), "mipsel", "Mipsel", "Mips");
|
||||
Y(getTheMipselTarget(), "mipsel", "MIPS (32-bit little endian)", "Mips");
|
||||
|
||||
RegisterTarget<Triple::mips64,
|
||||
/*HasJIT=*/true>
|
||||
A(getTheMips64Target(), "mips64", "Mips64", "Mips");
|
||||
A(getTheMips64Target(), "mips64", "MIPS (64-bit big endian)", "Mips");
|
||||
|
||||
RegisterTarget<Triple::mips64el,
|
||||
/*HasJIT=*/true>
|
||||
B(getTheMips64elTarget(), "mips64el", "Mips64el", "Mips");
|
||||
B(getTheMips64elTarget(), "mips64el", "MIPS (64-bit little endian)",
|
||||
"Mips");
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user