mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
9c39fe2bb2
This commit adds the 'AVRMachineFunctionInfo' class, which simply stores basic properties about generated machine functions. llvm-svn: 256213
16 lines
452 B
C++
16 lines
452 B
C++
//===-- AVRConfig.h - AVR Backend Configuration Header ----------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_AVR_CONFIG_H
|
|
#define LLVM_AVR_CONFIG_H
|
|
|
|
#define LLVM_AVR_GCC_COMPAT
|
|
|
|
#endif // LLVM_AVR_CONFIG_H
|