diff options
author | Evan Cheng <evan.cheng@apple.com> | 2007-07-21 00:34:19 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2007-07-21 00:34:19 +0000 |
commit | ffbaccae029ac238972e3814967260f029b6058a (patch) | |
tree | 0a3938c96b46a1c4b638963673c52135fd80cb3c /lib/Target/PowerPC/PPCInstr64Bit.td | |
parent | c674a924d4ed62e857bf788d7e0c76c89239b903 (diff) | |
download | external_llvm-ffbaccae029ac238972e3814967260f029b6058a.zip external_llvm-ffbaccae029ac238972e3814967260f029b6058a.tar.gz external_llvm-ffbaccae029ac238972e3814967260f029b6058a.tar.bz2 |
No more noResults.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40132 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PPCInstr64Bit.td')
-rw-r--r-- | lib/Target/PowerPC/PPCInstr64Bit.td | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Target/PowerPC/PPCInstr64Bit.td b/lib/Target/PowerPC/PPCInstr64Bit.td index 2b37f88..098b1a0 100644 --- a/lib/Target/PowerPC/PPCInstr64Bit.td +++ b/lib/Target/PowerPC/PPCInstr64Bit.td @@ -70,7 +70,7 @@ let Defs = [LR8] in PPC970_Unit_BRU; // Macho ABI Calls. -let isCall = 1, noResults = 1, PPC970_Unit = 7, +let isCall = 1, PPC970_Unit = 7, // All calls clobber the PPC64 non-callee saved registers. Defs = [X0,X2,X3,X4,X5,X6,X7,X8,X9,X10,X11,X12, F0,F1,F2,F3,F4,F5,F6,F7,F8,F9,F10,F11,F12,F13, @@ -89,7 +89,7 @@ let isCall = 1, noResults = 1, PPC970_Unit = 7, // ELF 64 ABI Calls = Macho ABI Calls // Used to define BL8_ELF and BLA8_ELF -let isCall = 1, noResults = 1, PPC970_Unit = 7, +let isCall = 1, PPC970_Unit = 7, // All calls clobber the PPC64 non-callee saved registers. Defs = [X0,X2,X3,X4,X5,X6,X7,X8,X9,X10,X11,X12, F0,F1,F2,F3,F4,F5,F6,F7,F8,F9,F10,F11,F12,F13, @@ -438,7 +438,7 @@ def LDU : DSForm_1<58, 1, (outs G8RC:$rD), (ins ptr_rc:$ea_result, memrix:$addr } -let isStore = 1, noResults = 1, PPC970_Unit = 2 in { +let isStore = 1, PPC970_Unit = 2 in { // Truncating stores. def STB8 : DForm_1<38, (outs), (ins G8RC:$rS, memri:$src), "stb $rS, $src", LdStGeneral, @@ -505,7 +505,7 @@ def STDU : DSForm_1<62, 1, (outs ptr_rc:$ea_res), (ins G8RC:$rS, } -let isStore = 1, noResults = 1, PPC970_Unit = 2 in { +let isStore = 1, PPC970_Unit = 2 in { def STDUX : XForm_8<31, 181, (outs), (ins G8RC:$rS, memrr:$dst), "stdux $rS, $dst", LdStSTD, |