diff options
Diffstat (limited to 'clang/lib/Frontend/CodeGenOptions.cpp')
-rw-r--r-- | clang/lib/Frontend/CodeGenOptions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Frontend/CodeGenOptions.cpp b/clang/lib/Frontend/CodeGenOptions.cpp index 50bb9f951be..84a39f2d570 100644 --- a/clang/lib/Frontend/CodeGenOptions.cpp +++ b/clang/lib/Frontend/CodeGenOptions.cpp @@ -17,7 +17,7 @@ CodeGenOptions::CodeGenOptions() { #define ENUM_CODEGENOPT(Name, Type, Bits, Default) set##Name(Default); #include "clang/Frontend/CodeGenOptions.def" - RelocationModel = "pic"; + RelocationModel = llvm::Reloc::PIC_; memcpy(CoverageVersion, "402*", 4); } |