aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/Blackfin
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-08-11 22:39:40 +0000
committerChris Lattner <sabre@nondot.org>2009-08-11 22:39:40 +0000
commite2b060161c92ddf60b5d020f981451e9e34a3f02 (patch)
tree15b1240b4ff1ad16135acf4096de957cb2facb80 /lib/Target/Blackfin
parent546952fd600ddba3f1eb6d4f93ff4eb42821a962 (diff)
downloadexternal_llvm-e2b060161c92ddf60b5d020f981451e9e34a3f02.zip
external_llvm-e2b060161c92ddf60b5d020f981451e9e34a3f02.tar.gz
external_llvm-e2b060161c92ddf60b5d020f981451e9e34a3f02.tar.bz2
Change the asmprinter to print the comment character before the
"inlineasmstart/end" strings so that the contents of the directive are separate from the comment character. This lets elf targets get #APP/#NOAPP for free even if they don't use "#" as the comment character. This also allows hoisting the darwin stuff up to the shared TAI class. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78737 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Blackfin')
-rw-r--r--lib/Target/Blackfin/BlackfinTargetAsmInfo.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/Target/Blackfin/BlackfinTargetAsmInfo.cpp b/lib/Target/Blackfin/BlackfinTargetAsmInfo.cpp
index 8dcb44b..3ab02d8 100644
--- a/lib/Target/Blackfin/BlackfinTargetAsmInfo.cpp
+++ b/lib/Target/Blackfin/BlackfinTargetAsmInfo.cpp
@@ -18,6 +18,4 @@ using namespace llvm;
BlackfinTargetAsmInfo::BlackfinTargetAsmInfo() {
GlobalPrefix = "_";
CommentString = "//";
- InlineAsmStart = "// APP";
- InlineAsmEnd = "// NO_APP";
}