diff options
author | Chris Lattner <sabre@nondot.org> | 2010-01-05 05:21:26 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-01-05 05:21:26 +0000 |
commit | 43fd9017a69a6314fb780f87083b1e57a0981287 (patch) | |
tree | b1e2b2c300747013130e431316af79b2cc2c4f1c /include/llvm/Transforms | |
parent | 5f94af0f725690a75b18909da2ff8cee0f93bebb (diff) | |
download | external_llvm-43fd9017a69a6314fb780f87083b1e57a0981287.zip external_llvm-43fd9017a69a6314fb780f87083b1e57a0981287.tar.gz external_llvm-43fd9017a69a6314fb780f87083b1e57a0981287.tar.bz2 |
convert various IntrinsicInst's to use class instead of struct.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92681 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Transforms')
-rw-r--r-- | include/llvm/Transforms/Utils/Local.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Transforms/Utils/Local.h b/include/llvm/Transforms/Utils/Local.h index 2cdd31f..5f23d88 100644 --- a/include/llvm/Transforms/Utils/Local.h +++ b/include/llvm/Transforms/Utils/Local.h @@ -27,7 +27,7 @@ class PHINode; class AllocaInst; class ConstantExpr; class TargetData; -struct DbgInfoIntrinsic; +class DbgInfoIntrinsic; template<typename T> class SmallVectorImpl; |