diff options
author | Hal Finkel <hfinkel@anl.gov> | 2015-01-13 18:25:05 +0000 |
---|---|---|
committer | Hal Finkel <hfinkel@anl.gov> | 2015-01-13 18:25:05 +0000 |
commit | 63fb9281092a475a5d77b52f041efb4d0aa2a26f (patch) | |
tree | 8388aeaf34312f2566a7c2b494c05dd5e6342a42 /llvm/lib/Target/PowerPC/PPCCallingConv.h | |
parent | 4a2d333982e9a9b8db9404d65470c5925a6f19b7 (diff) | |
download | bcm5719-llvm-63fb9281092a475a5d77b52f041efb4d0aa2a26f.tar.gz bcm5719-llvm-63fb9281092a475a5d77b52f041efb4d0aa2a26f.zip |
Revert "r225808 - [PowerPC] Add StackMap/PatchPoint support"
Reverting this while I investiage buildbot failures (segfaulting in
GetCostForDef at ScheduleDAGRRList.cpp:314).
llvm-svn: 225811
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCCallingConv.h')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCCallingConv.h | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCCallingConv.h b/llvm/lib/Target/PowerPC/PPCCallingConv.h deleted file mode 100644 index eb904a85859..00000000000 --- a/llvm/lib/Target/PowerPC/PPCCallingConv.h +++ /dev/null @@ -1,35 +0,0 @@ -//=== PPCCallingConv.h - PPC Custom Calling Convention Routines -*- 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 custom routines for the PPC Calling Convention that -// aren't done by tablegen. -// -//===----------------------------------------------------------------------===// - -#ifndef LLVM_LIB_TARGET_PPC_PPCCALLINGCONV_H -#define LLVM_LIB_TARGET_PPC_PPCCALLINGCONV_H - -#include "llvm/CodeGen/CallingConvLower.h" -#include "llvm/IR/CallingConv.h" - -namespace llvm { - -inline bool CC_PPC_AnyReg_Error(unsigned &, MVT &, MVT &, - CCValAssign::LocInfo &, ISD::ArgFlagsTy &, - CCState &) { - llvm_unreachable("The AnyReg calling convention is only supported by the " \ - "stackmap and patchpoint intrinsics."); - // gracefully fallback to PPC C calling convention on Release builds. - return false; -} - -} // End llvm namespace - -#endif - |