summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-07-20 17:59:32 +0000
committerChris Lattner <sabre@nondot.org>2009-07-20 17:59:32 +0000
commit1902fd9605ab33798408405e840be3d9bdebbd90 (patch)
treee297b347fd5f6ad01e32935729c2f45b6d09523c /include
parent8850b36d0fdd2ddde3cc409a8496ace544e42185 (diff)
downloadexternal_llvm-1902fd9605ab33798408405e840be3d9bdebbd90.zip
external_llvm-1902fd9605ab33798408405e840be3d9bdebbd90.tar.gz
external_llvm-1902fd9605ab33798408405e840be3d9bdebbd90.tar.bz2
remove TargetAsmInfo::ExpandInlineAsm
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76445 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Target/TargetAsmInfo.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/include/llvm/Target/TargetAsmInfo.h b/include/llvm/Target/TargetAsmInfo.h
index 11ba392..6cdb7cc 100644
--- a/include/llvm/Target/TargetAsmInfo.h
+++ b/include/llvm/Target/TargetAsmInfo.h
@@ -562,15 +562,6 @@ namespace llvm {
/// length.
virtual unsigned getInlineAsmLength(const char *Str) const;
- /// ExpandInlineAsm - This hook allows the target to expand an inline asm
- /// call to be explicit llvm code if it wants to. This is useful for
- /// turning simple inline asms into LLVM intrinsics, which gives the
- /// compiler more information about the behavior of the code.
-// FIXME: Move this to TargetLowering.
- virtual bool ExpandInlineAsm(CallInst *CI) const {
- return false;
- }
-
/// emitUsedDirectiveFor - This hook allows targets to selectively decide
/// not to emit the UsedDirective for some symbols in llvm.used.
// FIXME: REMOVE this (rdar://7071300)