summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/PIC16
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-01-26 20:40:54 +0000
committerChris Lattner <sabre@nondot.org>2010-01-26 20:40:54 +0000
commitff234e09b9058b04bb1e699e3d4a82d2c8263439 (patch)
treeac3b9097ab0ad2ca483f4e14524d42383faefa77 /llvm/lib/Target/PIC16
parentf0ed69cb5b5e436d61f24683ce658e861592a366 (diff)
downloadbcm5719-llvm-ff234e09b9058b04bb1e699e3d4a82d2c8263439.tar.gz
bcm5719-llvm-ff234e09b9058b04bb1e699e3d4a82d2c8263439.zip
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. llvm-svn: 94585
Diffstat (limited to 'llvm/lib/Target/PIC16')
-rw-r--r--llvm/lib/Target/PIC16/PIC16MCAsmInfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/PIC16/PIC16MCAsmInfo.cpp b/llvm/lib/Target/PIC16/PIC16MCAsmInfo.cpp
index 827315e13b7..b08054270ce 100644
--- a/llvm/lib/Target/PIC16/PIC16MCAsmInfo.cpp
+++ b/llvm/lib/Target/PIC16/PIC16MCAsmInfo.cpp
@@ -37,7 +37,7 @@ PIC16MCAsmInfo::PIC16MCAsmInfo(const Target &T, const StringRef &TT) {
RomData8bitsDirective = " dw ";
RomData16bitsDirective = " rom_di ";
RomData32bitsDirective = " rom_dl ";
-
+ HasSetDirective = false;
// Set it to false because we weed to generate c file name and not bc file
// name.
OpenPOWER on IntegriCloud