diff options
author | Chris Lattner <sabre@nondot.org> | 2010-01-26 20:40:54 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-01-26 20:40:54 +0000 |
commit | cee63322eaccc2f1067bdf5eab506e440f867da1 (patch) | |
tree | 940f80c27df82f5e4ccba4a33aa3b72d90f357fa /lib/Target/Blackfin/BlackfinMCAsmInfo.cpp | |
parent | 2a531673b95639174da449402f6609e7d5a14d2d (diff) | |
download | external_llvm-cee63322eaccc2f1067bdf5eab506e440f867da1.zip external_llvm-cee63322eaccc2f1067bdf5eab506e440f867da1.tar.gz external_llvm-cee63322eaccc2f1067bdf5eab506e440f867da1.tar.bz2 |
Eliminate SetDirective, and replace it with HasSetDirective.
Default HasSetDirective to true, since most targets have it.
The targets that claim to not have it probably do, or it is
spelled differently. These include Blackfin, Mips, Alpha, and
PIC16. All of these except pic16 are normal ELF targets, so
they almost certainly have it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94585 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Blackfin/BlackfinMCAsmInfo.cpp')
-rw-r--r-- | lib/Target/Blackfin/BlackfinMCAsmInfo.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/Blackfin/BlackfinMCAsmInfo.cpp b/lib/Target/Blackfin/BlackfinMCAsmInfo.cpp index 6d0f66c..31470fb 100644 --- a/lib/Target/Blackfin/BlackfinMCAsmInfo.cpp +++ b/lib/Target/Blackfin/BlackfinMCAsmInfo.cpp @@ -18,4 +18,5 @@ using namespace llvm; BlackfinMCAsmInfo::BlackfinMCAsmInfo(const Target &T, const StringRef &TT) { GlobalPrefix = "_"; CommentString = "//"; + HasSetDirective = false; } |