diff options
author | Chris Lattner <sabre@nondot.org> | 2009-07-16 05:03:48 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-07-16 05:03:48 +0000 |
commit | 95b851e55c328af4b69da7bfc1124bf258c0ffe5 (patch) | |
tree | b3e529fc1130dc719c1c655abd0a3632850ddb05 /include | |
parent | 9797a8760ba3d43c686aa9e09978e0ca172172a4 (diff) |
codegen string literals using private linkage now like llvm-gcc, eliminating
some target hooks.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@75895 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/clang/Basic/TargetInfo.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/include/clang/Basic/TargetInfo.h b/include/clang/Basic/TargetInfo.h index b1f9821d31..8aa3378fec 100644 --- a/include/clang/Basic/TargetInfo.h +++ b/include/clang/Basic/TargetInfo.h @@ -300,18 +300,6 @@ public: virtual bool useGlobalsForAutomaticVariables() const { return false; } - /// getStringSymbolPrefix - Get the default symbol prefix to - /// use for string literals. - virtual const char *getStringSymbolPrefix(bool IsConstant) const { - return ".str"; - } - - /// getCFStringSymbolPrefix - Get the default symbol prefix - /// to use for CFString literals. - virtual const char *getCFStringSymbolPrefix() const { - return ""; - } - /// getUnicodeStringSymbolPrefix - Get the default symbol prefix to /// use for string literals. virtual const char *getUnicodeStringSymbolPrefix() const { |