diff options
author | Dan Gohman <gohman@apple.com> | 2010-04-15 04:33:49 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-04-15 04:33:49 +0000 |
commit | ae541aad5c36cb3e4256514447d1f81e253079c7 (patch) | |
tree | f2d8e82324f62acca48f90c0535719daafc22c17 /lib/CodeGen/ELFWriter.h | |
parent | dc7d6c9ddc1d1527a06f61b5da806781ff047709 (diff) |
Add more const qualifiers for LLVM IR pointers in CodeGen.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101342 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/ELFWriter.h')
-rw-r--r-- | lib/CodeGen/ELFWriter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/ELFWriter.h b/lib/CodeGen/ELFWriter.h index b61b4848b6..db66ecc6dd 100644 --- a/lib/CodeGen/ELFWriter.h +++ b/lib/CodeGen/ELFWriter.h @@ -191,7 +191,7 @@ namespace llvm { ELFSection &getDtorSection(); ELFSection &getJumpTableSection(); ELFSection &getConstantPoolSection(MachineConstantPoolEntry &CPE); - ELFSection &getTextSection(Function *F); + ELFSection &getTextSection(const Function *F); ELFSection &getRelocSection(ELFSection &S); // Helpers for obtaining ELF specific info. |