summaryrefslogtreecommitdiff
path: root/lib/Target/Blackfin/BlackfinTargetAsmInfo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Target/Blackfin/BlackfinTargetAsmInfo.cpp')
-rw-r--r--lib/Target/Blackfin/BlackfinTargetAsmInfo.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/lib/Target/Blackfin/BlackfinTargetAsmInfo.cpp b/lib/Target/Blackfin/BlackfinTargetAsmInfo.cpp
new file mode 100644
index 0000000000..8dcb44be50
--- /dev/null
+++ b/lib/Target/Blackfin/BlackfinTargetAsmInfo.cpp
@@ -0,0 +1,23 @@
+//===-- BlackfinTargetAsmInfo.cpp - Blackfin asm properties -----*- C++ -*-===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+//
+// This file contains the declarations of the BlackfinTargetAsmInfo properties.
+//
+//===----------------------------------------------------------------------===//
+
+#include "BlackfinTargetAsmInfo.h"
+
+using namespace llvm;
+
+BlackfinTargetAsmInfo::BlackfinTargetAsmInfo() {
+ GlobalPrefix = "_";
+ CommentString = "//";
+ InlineAsmStart = "// APP";
+ InlineAsmEnd = "// NO_APP";
+}