diff options
author | Chris Lattner <sabre@nondot.org> | 2010-03-15 05:35:37 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-03-15 05:35:37 +0000 |
commit | 4f26c1a96093c2eda1dd24d32f62cd08abb85051 (patch) | |
tree | 26d98d12d32dbe67ca86a6512605b1305aff46ed /llvm/lib/Target/Alpha | |
parent | 3ddd88f523defacb922ea53e64fec2bdf25f2896 (diff) | |
download | bcm5719-llvm-4f26c1a96093c2eda1dd24d32f62cd08abb85051.tar.gz bcm5719-llvm-4f26c1a96093c2eda1dd24d32f62cd08abb85051.zip |
add some missing types
llvm-svn: 98530
Diffstat (limited to 'llvm/lib/Target/Alpha')
-rw-r--r-- | llvm/lib/Target/Alpha/AlphaInstrInfo.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/Alpha/AlphaInstrInfo.td b/llvm/lib/Target/Alpha/AlphaInstrInfo.td index 95de3d85f8a..91e58ceef4b 100644 --- a/llvm/lib/Target/Alpha/AlphaInstrInfo.td +++ b/llvm/lib/Target/Alpha/AlphaInstrInfo.td @@ -1059,8 +1059,8 @@ def : Pat<(i64 immSExt16:$imm), def : Pat<(i64 immSExt16int:$imm), (ZAPNOTi (LDA (SExt16 immSExt16int:$imm), R31), 15)>; def : Pat<(i64 immConst2PartInt:$imm), - (ZAPNOTi (LDA (LL16 (SExt32 immConst2PartInt:$imm)), - (LDAH (LH16 (SExt32 immConst2PartInt:$imm)), R31)), 15)>; + (ZAPNOTi (LDA (LL16 (i64 (SExt32 immConst2PartInt:$imm))), + (LDAH (LH16 (i64 (SExt32 immConst2PartInt:$imm))), R31)), 15)>; //TODO: I want to just define these like this! |