summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Transforms/IPO/PruneEH.cpp
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2008-09-23 23:03:40 +0000
committerDevang Patel <dpatel@apple.com>2008-09-23 23:03:40 +0000
commitba3fa6c6e15d0db6205a52f2f080bad10f093430 (patch)
treefca177c98b3343b1e1be3f85aaca1c42e33a081b /llvm/lib/Transforms/IPO/PruneEH.cpp
parent82fed6702b13d9d3625295494ead5211c415b3a0 (diff)
downloadbcm5719-llvm-ba3fa6c6e15d0db6205a52f2f080bad10f093430.tar.gz
bcm5719-llvm-ba3fa6c6e15d0db6205a52f2f080bad10f093430.zip
s/ParameterAttributes/Attributes/g
llvm-svn: 56513
Diffstat (limited to 'llvm/lib/Transforms/IPO/PruneEH.cpp')
-rw-r--r--llvm/lib/Transforms/IPO/PruneEH.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/IPO/PruneEH.cpp b/llvm/lib/Transforms/IPO/PruneEH.cpp
index 297c6c15414..9968d59451f 100644
--- a/llvm/lib/Transforms/IPO/PruneEH.cpp
+++ b/llvm/lib/Transforms/IPO/PruneEH.cpp
@@ -125,7 +125,7 @@ bool PruneEH::runOnSCC(const std::vector<CallGraphNode *> &SCC) {
// If the SCC doesn't unwind or doesn't throw, note this fact.
if (!SCCMightUnwind || !SCCMightReturn)
for (unsigned i = 0, e = SCC.size(); i != e; ++i) {
- ParameterAttributes NewAttributes = ParamAttr::None;
+ Attributes NewAttributes = ParamAttr::None;
if (!SCCMightUnwind)
NewAttributes |= ParamAttr::NoUnwind;
OpenPOWER on IntegriCloud