commit | ade3075030ddd6db370649993a6da5e21e73daab | [log] [tgz] |
---|---|---|
author | Michael Gottesman <mgottesman@apple.com> | Tue Aug 20 08:56:28 2013 +0000 |
committer | Michael Gottesman <mgottesman@apple.com> | Tue Aug 20 08:56:28 2013 +0000 |
tree | 60292e5607c108cb1e10f7ed6c8595533b1c1337 | |
parent | d4f478899e6229648f94c4aa70256986cdc6ee18 [diff] [blame] |
[stackprotector] Small cleanup. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188772 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/StackProtector.cpp b/lib/CodeGen/StackProtector.cpp index 86ca53d..45675c9 100644 --- a/lib/CodeGen/StackProtector.cpp +++ b/lib/CodeGen/StackProtector.cpp
@@ -395,7 +395,8 @@ for (Function::iterator I = F->begin(), E = F->end(); I != E; ) { BasicBlock *BB = I++; ReturnInst *RI = dyn_cast<ReturnInst>(BB->getTerminator()); - if (!RI) continue; + if (!RI) + continue; if (!HasPrologue) { HasPrologue = true;