diff options
author | Sanjay Patel <spatel@rotateright.com> | 2015-07-07 21:31:54 +0000 |
---|---|---|
committer | Sanjay Patel <spatel@rotateright.com> | 2015-07-07 21:31:54 +0000 |
commit | d4e1bb89e37e2eb227eee82d902dfcbe44ecb913 (patch) | |
tree | f9005b17c49e70dff73ca3e0e29fadba99e90140 | |
parent | a7b2690cb37f40a4c9ab01a1311a12d3c8a45977 (diff) | |
download | bcm5719-llvm-d4e1bb89e37e2eb227eee82d902dfcbe44ecb913.tar.gz bcm5719-llvm-d4e1bb89e37e2eb227eee82d902dfcbe44ecb913.zip |
fix typo; NFC
llvm-svn: 241629
-rw-r--r-- | llvm/lib/Target/Mips/MipsTargetMachine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/Mips/MipsTargetMachine.cpp b/llvm/lib/Target/Mips/MipsTargetMachine.cpp index c820668befa..266e0a4bf3d 100644 --- a/llvm/lib/Target/Mips/MipsTargetMachine.cpp +++ b/llvm/lib/Target/Mips/MipsTargetMachine.cpp @@ -62,7 +62,7 @@ static std::string computeDataLayout(const Triple &TT, StringRef CPU, if (!ABI.IsN64()) Ret += "-p:32:32"; - // 8 and 16 bit integers only need no have natural alignment, but try to + // 8 and 16 bit integers only need to have natural alignment, but try to // align them to 32 bits. 64 bit integers have natural alignment. Ret += "-i8:8:32-i16:16:32-i64:64"; |