mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-03-07 11:59:09 +00:00
Constify
llvm-svn: 53291
This commit is contained in:
parent
651865851c
commit
552675bb0f
@ -469,7 +469,7 @@ namespace llvm {
|
||||
/// section flags either for given global or for section.
|
||||
unsigned
|
||||
SectionFlagsForGlobal(const GlobalValue *GV = NULL,
|
||||
const char* name = NULL);
|
||||
const char* name = NULL) const;
|
||||
|
||||
// Accessors.
|
||||
//
|
||||
|
@ -194,7 +194,7 @@ TargetAsmInfo::SectionKindForGlobal(const GlobalValue *GV) const {
|
||||
|
||||
unsigned
|
||||
TargetAsmInfo::SectionFlagsForGlobal(const GlobalValue *GV,
|
||||
const char* name) {
|
||||
const char* name) const {
|
||||
unsigned flags = SectionFlags::None;
|
||||
|
||||
// Decode flags from global itself.
|
||||
|
Loading…
x
Reference in New Issue
Block a user