Rename SPARC V8 target to be the LLVM SPARC target.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25985 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2006-02-05 05:50:24 +00:00
parent 213845367c
commit 7c90f73a1b
18 changed files with 532 additions and 538 deletions

View File

@@ -1,4 +1,4 @@
//===- SparcV8Subtarget.cpp - SPARC Subtarget Information -----------------===//
//===- SparcSubtarget.cpp - SPARC Subtarget Information -------------------===//
//
// The LLVM Compiler Infrastructure
//
@@ -11,8 +11,8 @@
//
//===----------------------------------------------------------------------===//
#include "SparcV8Subtarget.h"
#include "SparcV8GenSubtarget.inc"
#include "SparcSubtarget.h"
#include "SparcGenSubtarget.inc"
using namespace llvm;
// FIXME: temporary.
@@ -22,7 +22,7 @@ namespace {
cl::desc("Enable V9 instructions in the V8 target"));
}
SparcV8Subtarget::SparcV8Subtarget(const Module &M, const std::string &FS) {
SparcSubtarget::SparcSubtarget(const Module &M, const std::string &FS) {
// Set the default features.
IsV9 = false;
V8DeprecatedInsts = false;