mirror of
https://github.com/RPCS3/llvm.git
synced 2026-01-31 01:25:19 +01:00
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@260568 91177308-0d34-0410-b5e6-96231b3b80d8
22 lines
785 B
C++
22 lines
785 B
C++
//===-- llvm/CodeGen/GlobalISel/EmptyFile.cpp ------ EmptyFile ---*- C++ -*-==//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
/// \file
|
|
/// The purpose of this file is to please cmake by not creating an
|
|
/// empty library when we do not build GlobalISel.
|
|
/// \todo This file should be removed when GlobalISel is not optional anymore.
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/Support/Compiler.h"
|
|
|
|
// Anonymous namespace so that we do not step on anyone's toes.
|
|
namespace {
|
|
LLVM_ATTRIBUTE_UNUSED void foo(void) {
|
|
}
|
|
}
|