summaryrefslogtreecommitdiff
path: root/lib/Target/PowerPC/PPCSubtarget.cpp
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2008-01-08 10:06:15 +0000
committerDuncan Sands <baldrick@free.fr>2008-01-08 10:06:15 +0000
commite51775dc5e3503092313fe77174127f4f4d17374 (patch)
tree3b5a8fa1bac3750830cc98409f31c3a225995848 /lib/Target/PowerPC/PPCSubtarget.cpp
parentf9d9e45225260afcc2040909b79161f6c1fccf38 (diff)
downloadllvm-e51775dc5e3503092313fe77174127f4f4d17374.tar.gz
llvm-e51775dc5e3503092313fe77174127f4f4d17374.tar.bz2
llvm-e51775dc5e3503092313fe77174127f4f4d17374.tar.xz
Use size_t to store Pos, avoid truncating value
on 64-bit builds. Analysis and original patch by Török Edwin. Code audit found another place with the same problem, also fixed here. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45746 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PPCSubtarget.cpp')
-rw-r--r--lib/Target/PowerPC/PPCSubtarget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/PowerPC/PPCSubtarget.cpp b/lib/Target/PowerPC/PPCSubtarget.cpp
index 0a1e6a7837..dff53baa16 100644
--- a/lib/Target/PowerPC/PPCSubtarget.cpp
+++ b/lib/Target/PowerPC/PPCSubtarget.cpp
@@ -103,7 +103,7 @@ PPCSubtarget::PPCSubtarget(const TargetMachine &tm, const Module &M,
const std::string &TT = M.getTargetTriple();
if (TT.length() > 7) {
// Determine which version of darwin this is.
- unsigned DarwinPos = TT.find("-darwin");
+ size_t DarwinPos = TT.find("-darwin");
if (DarwinPos != std::string::npos) {
if (isdigit(TT[DarwinPos+7]))
DarwinVers = atoi(&TT[DarwinPos+7]);