mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-25 03:30:37 +00:00
version. This allows TAI implementations to specify the directive to use based on the mode being codegen'd for. The real fix for this is to remove JumpTableDirective, but I don't feel like diving into the jumptable snarl just now. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78709 91177308-0d34-0410-b5e6-96231b3b80d8
23 lines
737 B
C++
23 lines
737 B
C++
//===-- AlphaTargetAsmInfo.cpp - Alpha 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 AlphaTargetAsmInfo properties.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "AlphaTargetAsmInfo.h"
|
|
using namespace llvm;
|
|
|
|
AlphaTargetAsmInfo::AlphaTargetAsmInfo() {
|
|
AlignmentIsInBytes = false;
|
|
PrivateGlobalPrefix = "$";
|
|
PICJumpTableDirective = ".gprel32";
|
|
WeakRefDirective = "\t.weak\t";
|
|
}
|