aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Target
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-07-26 21:12:04 +0000
committerChris Lattner <sabre@nondot.org>2006-07-26 21:12:04 +0000
commit35d86fef1f1fc5845366c7c36803a6a3334d8a2e (patch)
tree076047d0209da8c574f8b30074a0698fc31fa61a /include/llvm/Target
parent5332430643545f55986b1896242220cc1ffdc136 (diff)
downloadexternal_llvm-35d86fef1f1fc5845366c7c36803a6a3334d8a2e.zip
external_llvm-35d86fef1f1fc5845366c7c36803a6a3334d8a2e.tar.gz
external_llvm-35d86fef1f1fc5845366c7c36803a6a3334d8a2e.tar.bz2
Rename RelocModel::PIC to PIC_, to avoid conflicts with -DPIC.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29307 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target')
-rw-r--r--include/llvm/Target/TargetMachine.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Target/TargetMachine.h b/include/llvm/Target/TargetMachine.h
index 0b1cb38..da6027c 100644
--- a/include/llvm/Target/TargetMachine.h
+++ b/include/llvm/Target/TargetMachine.h
@@ -39,7 +39,7 @@ namespace Reloc {
enum Model {
Default,
Static,
- PIC,
+ PIC_, // Cannot be named PIC due to collision with -DPIC
DynamicNoPIC
};
}