From: Saleem Abdulrasool Date: Mon, 31 Mar 2014 18:09:10 +0000 (+0000) Subject: ARM: fix typo X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=171d09a9af0dde841435f0d04f29f3409c99ce5d;p=oota-llvm.git ARM: fix typo git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@205233 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/ARM/ARMTargetMachine.cpp b/lib/Target/ARM/ARMTargetMachine.cpp index c20672dcec2..e397a08ef38 100644 --- a/lib/Target/ARM/ARMTargetMachine.cpp +++ b/lib/Target/ARM/ARMTargetMachine.cpp @@ -87,7 +87,7 @@ static std::string computeDataLayout(ARMSubtarget &ST) { if (ST.isThumb()) Ret += "-i1:8:32-i8:8:32-i16:16:32"; - // ABIs other than APC have 64 bit integers with natural alignment. + // ABIs other than APCS have 64 bit integers with natural alignment. if (!ST.isAPCS_ABI()) Ret += "-i64:64";