diff options
| author | Chris Lattner <sabre@nondot.org> | 2005-09-14 21:11:13 +0000 | 
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2005-09-14 21:11:13 +0000 | 
| commit | 9e4a4ee3dc3fd9f76cf2e627ac1bd34d904dd43f (patch) | |
| tree | 68aad558159d7d706525737dd97b28c1deb94388 | |
| parent | 2e84be22a8ce938d6001a9686ad38a4de646731f (diff) | |
| download | bcm5719-llvm-9e4a4ee3dc3fd9f76cf2e627ac1bd34d904dd43f.tar.gz bcm5719-llvm-9e4a4ee3dc3fd9f76cf2e627ac1bd34d904dd43f.zip | |
Give all operands names
llvm-svn: 23357
| -rw-r--r-- | llvm/lib/Target/IA64/IA64InstrInfo.td | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/llvm/lib/Target/IA64/IA64InstrInfo.td b/llvm/lib/Target/IA64/IA64InstrInfo.td index 1da7ee77b4f..52d817a5eb3 100644 --- a/llvm/lib/Target/IA64/IA64InstrInfo.td +++ b/llvm/lib/Target/IA64/IA64InstrInfo.td @@ -43,7 +43,7 @@ def ADJUSTCALLSTACKUP : PseudoInstIA64<(ops variable_ops),                                          "// ADJUSTCALLSTACKUP">;  def ADJUSTCALLSTACKDOWN : PseudoInstIA64<(ops variable_ops),                                           "// ADJUSTCALLSTACKDOWN">; -def PSEUDO_ALLOC : PseudoInstIA64<(ops GR), "// PSEUDO_ALLOC">; +def PSEUDO_ALLOC : PseudoInstIA64<(ops GR:$foo), "// PSEUDO_ALLOC">;  def ALLOC : AForm<0x03, 0x0b,    (ops GR:$dst, i8imm:$inputs, i8imm:$locals, i8imm:$outputs, i8imm:$rotating), | 

