summaryrefslogtreecommitdiff
path: root/release_23/lib/Target/Sparc/SparcTargetAsmInfo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'release_23/lib/Target/Sparc/SparcTargetAsmInfo.cpp')
-rw-r--r--release_23/lib/Target/Sparc/SparcTargetAsmInfo.cpp25
1 files changed, 0 insertions, 25 deletions
diff --git a/release_23/lib/Target/Sparc/SparcTargetAsmInfo.cpp b/release_23/lib/Target/Sparc/SparcTargetAsmInfo.cpp
deleted file mode 100644
index a2be52f189b6..000000000000
--- a/release_23/lib/Target/Sparc/SparcTargetAsmInfo.cpp
+++ /dev/null
@@ -1,25 +0,0 @@
-//===-- SparcTargetAsmInfo.cpp - Sparc 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 SparcTargetAsmInfo properties.
-//
-//===----------------------------------------------------------------------===//
-
-#include "SparcTargetAsmInfo.h"
-
-using namespace llvm;
-
-SparcTargetAsmInfo::SparcTargetAsmInfo(const SparcTargetMachine &TM) {
- Data16bitsDirective = "\t.half\t";
- Data32bitsDirective = "\t.word\t";
- Data64bitsDirective = 0; // .xword is only supported by V9.
- ZeroDirective = "\t.skip\t";
- CommentString = "!";
- ConstantPoolSection = "\t.section \".rodata\",#alloc\n";
-}