summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-04-04 22:07:24 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-04-04 22:07:24 +0000
commite9f516384dc3c7d68e5903c0b2241529a52eae1c (patch)
tree3f7978bb4fc3e589a7bb3ad5718647dd05459df3 /llvm/lib/Target
parent029ea7ee74b759d15630a5fd88c63dfbf80c611a (diff)
downloadbcm5719-llvm-e9f516384dc3c7d68e5903c0b2241529a52eae1c.tar.gz
bcm5719-llvm-e9f516384dc3c7d68e5903c0b2241529a52eae1c.zip
Squelch a warning about mismatch between sign of constant and sign of return
type. llvm-svn: 35674
Diffstat (limited to 'llvm/lib/Target')
-rw-r--r--llvm/lib/Target/PowerPC/PPCFrameInfo.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCFrameInfo.h b/llvm/lib/Target/PowerPC/PPCFrameInfo.h
index 535e82386d0..81365e903d2 100644
--- a/llvm/lib/Target/PowerPC/PPCFrameInfo.h
+++ b/llvm/lib/Target/PowerPC/PPCFrameInfo.h
@@ -48,7 +48,7 @@ public:
// For ELF 32 ABI:
// Save it right before the link register
- return -4;
+ return -4U;
}
/// getLinkageSize - Return the size of the PowerPC ABI linkage area.
OpenPOWER on IntegriCloud