diff options
author | Chris Lattner <sabre@nondot.org> | 2003-10-19 21:34:28 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-10-19 21:34:28 +0000 |
commit | b94550e5372c3e5a8738dffd6e4407011a1590ef (patch) | |
tree | 88d4cc27fd5a6f129fa33e0c89c9ca7507b7431d /llvm/lib/Target/Sparc/SparcInstrInfo.cpp | |
parent | fc0bf07db4c95cc691ae7b9b538b36ddebc70f5e (diff) | |
download | bcm5719-llvm-b94550e5372c3e5a8738dffd6e4407011a1590ef.tar.gz bcm5719-llvm-b94550e5372c3e5a8738dffd6e4407011a1590ef.zip |
Change the Opcode enum for PHI nodes from "Instruction::PHINode" to "Instruction::PHI" to be more consistent with the other instructions.
llvm-svn: 9269
Diffstat (limited to 'llvm/lib/Target/Sparc/SparcInstrInfo.cpp')
-rw-r--r-- | llvm/lib/Target/Sparc/SparcInstrInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/Sparc/SparcInstrInfo.cpp b/llvm/lib/Target/Sparc/SparcInstrInfo.cpp index 1807ea04144..b4b47023524 100644 --- a/llvm/lib/Target/Sparc/SparcInstrInfo.cpp +++ b/llvm/lib/Target/Sparc/SparcInstrInfo.cpp @@ -365,7 +365,7 @@ MaxConstantForInstr(unsigned llvmOpCode) case Instruction::Malloc: case Instruction::Alloca: case Instruction::GetElementPtr: - case Instruction::PHINode: + case Instruction::PHI: case Instruction::Cast: case Instruction::Call: modelOpCode = V9::ADDi; break; |