From d4e1bb89e37e2eb227eee82d902dfcbe44ecb913 Mon Sep 17 00:00:00 2001 From: Sanjay Patel Date: Tue, 7 Jul 2015 21:31:54 +0000 Subject: [PATCH] fix typo; NFC llvm-svn: 241629 --- llvm/lib/Target/Mips/MipsTargetMachine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/Target/Mips/MipsTargetMachine.cpp b/llvm/lib/Target/Mips/MipsTargetMachine.cpp index c820668befa0..266e0a4bf3dc 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";