diff options
author | Chad Rosier <mcrosier@apple.com> | 2011-12-21 20:59:09 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2011-12-21 20:59:09 +0000 |
commit | 3172488cc0be6ffaa08f1362bc2488df22f91e6f (patch) | |
tree | eceb1b906b601c2bf1bb1d35797244cbc77af042 | |
parent | b3ef713e44f3fdebb3bb6ed82a608bb62a9ec413 (diff) | |
download | bcm5719-llvm-3172488cc0be6ffaa08f1362bc2488df22f91e6f.tar.gz bcm5719-llvm-3172488cc0be6ffaa08f1362bc2488df22f91e6f.zip |
Fix 80-column violations.
llvm-svn: 147095
-rw-r--r-- | llvm/lib/Target/X86/X86InstrSSE.td | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/lib/Target/X86/X86InstrSSE.td b/llvm/lib/Target/X86/X86InstrSSE.td index 756757c62c0..c44a8eb7fbb 100644 --- a/llvm/lib/Target/X86/X86InstrSSE.td +++ b/llvm/lib/Target/X86/X86InstrSSE.td @@ -1222,9 +1222,9 @@ let Predicates = [HasAVX] in { (VMOVHPSrm VR128:$src1, addr:$src2)>; // FIXME: Instead of X86Unpckl, there should be a X86Movlhpd here, the problem - // is during lowering, where it's not possible to recognize the load fold cause - // it has two uses through a bitcast. One use disappears at isel time and the - // fold opportunity reappears. + // is during lowering, where it's not possible to recognize the load fold + // cause it has two uses through a bitcast. One use disappears at isel time + // and the fold opportunity reappears. def : Pat<(v2f64 (X86Unpckl VR128:$src1, (scalar_to_vector (loadf64 addr:$src2)))), (VMOVHPDrm VR128:$src1, addr:$src2)>; @@ -1265,9 +1265,9 @@ let Predicates = [HasSSE1] in { let Predicates = [HasSSE2] in { // FIXME: Instead of X86Unpckl, there should be a X86Movlhpd here, the problem - // is during lowering, where it's not possible to recognize the load fold cause - // it has two uses through a bitcast. One use disappears at isel time and the - // fold opportunity reappears. + // is during lowering, where it's not possible to recognize the load fold + // cause it has two uses through a bitcast. One use disappears at isel time + // and the fold opportunity reappears. def : Pat<(v2f64 (X86Unpckl VR128:$src1, (scalar_to_vector (loadf64 addr:$src2)))), (MOVHPDrm VR128:$src1, addr:$src2)>; |