summaryrefslogtreecommitdiffstats
path: root/llvm
diff options
context:
space:
mode:
authorStephen Lin <stephenwlin@gmail.com>2013-04-21 18:05:20 +0000
committerStephen Lin <stephenwlin@gmail.com>2013-04-21 18:05:20 +0000
commitcda1028a39e86e513a989d533ec6eb5c5fd62c80 (patch)
treef9eae0667b8509556074a1372b17590266bcf03b /llvm
parent0212dc27edd48a72fab962594fe894b5b3e02af6 (diff)
downloadbcm5719-llvm-cda1028a39e86e513a989d533ec6eb5c5fd62c80.tar.gz
bcm5719-llvm-cda1028a39e86e513a989d533ec6eb5c5fd62c80.zip
Remove unused, undefined ArgFlagsTy::getArgFlagsString; add a comment about 'returned'
llvm-svn: 179983
Diffstat (limited to 'llvm')
-rw-r--r--llvm/include/llvm/Target/TargetCallingConv.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/llvm/include/llvm/Target/TargetCallingConv.h b/llvm/include/llvm/Target/TargetCallingConv.h
index 56ebfa41040..1fd0bd98b6f 100644
--- a/llvm/include/llvm/Target/TargetCallingConv.h
+++ b/llvm/include/llvm/Target/TargetCallingConv.h
@@ -36,7 +36,7 @@ namespace ISD {
static const uint64_t ByValOffs = 4;
static const uint64_t Nest = 1ULL<<5; ///< Nested fn static chain
static const uint64_t NestOffs = 5;
- static const uint64_t Returned = 1ULL<<6;
+ static const uint64_t Returned = 1ULL<<6; ///< Always returned
static const uint64_t ReturnedOffs = 6;
static const uint64_t ByValAlign = 0xFULL<<7; ///< Struct alignment
static const uint64_t ByValAlignOffs = 7;
@@ -44,7 +44,7 @@ namespace ISD {
static const uint64_t SplitOffs = 11;
static const uint64_t OrigAlign = 0x1FULL<<27;
static const uint64_t OrigAlignOffs = 27;
- static const uint64_t ByValSize = 0xffffffffULL << 32; ///< Struct size
+ static const uint64_t ByValSize = 0xffffffffULL<<32; ///< Struct size
static const uint64_t ByValSizeOffs = 32;
static const uint64_t One = 1ULL; ///< 1 of this type, for shifts
@@ -102,9 +102,6 @@ namespace ISD {
Flags = (Flags & ~ByValSize) | (uint64_t(S) << ByValSizeOffs);
}
- /// getArgFlagsString - Returns the flags as a string, eg: "zext align:4".
- std::string getArgFlagsString();
-
/// getRawBits - Represent the flags as a bunch of bits.
uint64_t getRawBits() const { return Flags; }
};
OpenPOWER on IntegriCloud