diff options
author | Sanjay Patel <spatel@rotateright.com> | 2015-07-01 17:55:07 +0000 |
---|---|---|
committer | Sanjay Patel <spatel@rotateright.com> | 2015-07-01 17:55:07 +0000 |
commit | e4d95c6c9a0c66cbd4fcb148168bff2a0ed82b6c (patch) | |
tree | fbd3c598ce9780dd13489a34f2587ff6436f9f31 | |
parent | 508f040994e128a174ef830da3f16f48e88ab7bf (diff) | |
download | bcm5719-llvm-e4d95c6c9a0c66cbd4fcb148168bff2a0ed82b6c.tar.gz bcm5719-llvm-e4d95c6c9a0c66cbd4fcb148168bff2a0ed82b6c.zip |
fix typos in comment; NFC
llvm-svn: 241174
-rw-r--r-- | llvm/lib/Target/X86/X86ISelLowering.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/lib/Target/X86/X86ISelLowering.h b/llvm/lib/Target/X86/X86ISelLowering.h index 372121b39ad..17660891635 100644 --- a/llvm/lib/Target/X86/X86ISelLowering.h +++ b/llvm/lib/Target/X86/X86ISelLowering.h @@ -642,9 +642,8 @@ namespace llvm { /// legal as the hook is used before type legalization. bool isSafeMemOpType(MVT VT) const override; - /// Returns true if the target allows - /// unaligned memory accesses. of the specified type. Returns whether it - /// is "fast" by reference in the second argument. + /// Returns true if the target allows unaligned memory accesses of the + /// specified type. Returns whether it is "fast" in the last argument. bool allowsMisalignedMemoryAccesses(EVT VT, unsigned AS, unsigned Align, bool *Fast) const override; |