ARM: fix typo

llvm-svn: 205233
This commit is contained in:
Saleem Abdulrasool 2014-03-31 18:09:10 +00:00
parent c627a8750a
commit 2070088bef
1 changed files with 1 additions and 1 deletions

View File

@ -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";