Fix a 80 col. violation.

llvm-svn: 60901
This commit is contained in:
Evan Cheng 2008-12-11 22:02:02 +00:00
parent 59b5e517c7
commit a52c3b4b8b
1 changed files with 2 additions and 1 deletions

View File

@ -234,7 +234,8 @@ def FMRRD : AVConv3I<0b11000101, 0b1011,
// FMDHR: GPR -> SPR
// FMDLR: GPR -> SPR
def FMDRR : AVConv5I<0b11000100, 0b1011, (outs DPR:$dst), (ins GPR:$src1, GPR:$src2),
def FMDRR : AVConv5I<0b11000100, 0b1011,
(outs DPR:$dst), (ins GPR:$src1, GPR:$src2),
"fmdrr", " $dst, $src1, $src2",
[(set DPR:$dst, (arm_fmdrr GPR:$src1, GPR:$src2))]>;