diff options
author | Dan Gohman <gohman@apple.com> | 2008-09-25 17:05:24 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-09-25 17:05:24 +0000 |
commit | 33134c4a75558288d663267c8991f6bd37a530af (patch) | |
tree | 3fea627a04867be8ca3b5efacd1e7435704933bb /include/llvm/CodeGen | |
parent | 4b052dc63d31e764b85d62c056bffe576d501ed4 (diff) | |
download | external_llvm-33134c4a75558288d663267c8991f6bd37a530af.zip external_llvm-33134c4a75558288d663267c8991f6bd37a530af.tar.gz external_llvm-33134c4a75558288d663267c8991f6bd37a530af.tar.bz2 |
FastISel support for debug info.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56610 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen')
-rw-r--r-- | include/llvm/CodeGen/FastISel.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/FastISel.h b/include/llvm/CodeGen/FastISel.h index 763d702..589e8e4 100644 --- a/include/llvm/CodeGen/FastISel.h +++ b/include/llvm/CodeGen/FastISel.h @@ -258,6 +258,8 @@ private: bool SelectGetElementPtr(User *I); + bool SelectCall(User *I); + bool SelectBitCast(User *I); bool SelectCast(User *I, ISD::NodeType Opcode); |