From 227bc0e21aec0c65582bdd9a4c701be927477547 Mon Sep 17 00:00:00 2001 From: Andrew Lenharth Date: Thu, 27 Jan 2005 00:52:26 +0000 Subject: [PATCH] minor bug fix llvm-svn: 19850 --- lib/Target/Alpha/AlphaISelPattern.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Target/Alpha/AlphaISelPattern.cpp b/lib/Target/Alpha/AlphaISelPattern.cpp index 3092a11a39b..0e1cf144251 100644 --- a/lib/Target/Alpha/AlphaISelPattern.cpp +++ b/lib/Target/Alpha/AlphaISelPattern.cpp @@ -157,7 +157,7 @@ AlphaTargetLowering::LowerArguments(Function &F, SelectionDAG &DAG) case MVT::i32: case MVT::i64: BuildMI(&BB, Alpha::IDEF, 0, args_int[count - 1]); - argVreg.push_back(MF.getSSARegMap()->createVirtualRegister(getRegClassFor(MVT::i64)))); + argVreg.push_back(MF.getSSARegMap()->createVirtualRegister(getRegClassFor(MVT::i64))); argPreg.push_back(args_int[count - 1]); break; }