1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Fix include guards.

llvm-svn: 135998
This commit is contained in:
Evan Cheng 2011-07-25 22:52:04 +00:00
parent ba702bf08a
commit 58e5fd1f16
3 changed files with 6 additions and 6 deletions

View File

@ -7,8 +7,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_TARGET_TARGETASMBACKEND_H
#define LLVM_TARGET_TARGETASMBACKEND_H
#ifndef LLVM_MC_TARGETASMBACKEND_H
#define LLVM_MC_TARGETASMBACKEND_H
#include "llvm/MC/MCDirectives.h"
#include "llvm/MC/MCFixup.h"

View File

@ -7,8 +7,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_TARGET_TARGETASMLEXER_H
#define LLVM_TARGET_TARGETASMLEXER_H
#ifndef LLVM_MC_TARGETASMLEXER_H
#define LLVM_MC_TARGETASMLEXER_H
#include "llvm/MC/MCParser/MCAsmLexer.h"

View File

@ -7,8 +7,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_TARGET_TARGETPARSER_H
#define LLVM_TARGET_TARGETPARSER_H
#ifndef LLVM_MC_TARGETPARSER_H
#define LLVM_MC_TARGETPARSER_H
#include "llvm/MC/MCParser/MCAsmParserExtension.h"