aboutsummaryrefslogtreecommitdiff
path: root/include/clang/CodeGen/CodeGenAction.h
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2011-12-12 23:05:47 +0000
committerChad Rosier <mcrosier@apple.com>2011-12-12 23:05:47 +0000
commitff7892758f1e46221b552486c1e329db92147ebc (patch)
tree90d93af406f805b3628f2d2fcfa5c758095c4059 /include/clang/CodeGen/CodeGenAction.h
parent8ef8f431aaeed3d7418959c81dfaa677b44f05ed (diff)
Add frontend flags to enable bitcode verifier pass.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@146441 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/CodeGen/CodeGenAction.h')
-rw-r--r--include/clang/CodeGen/CodeGenAction.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/clang/CodeGen/CodeGenAction.h b/include/clang/CodeGen/CodeGenAction.h
index 9697bc62af..6545a470f5 100644
--- a/include/clang/CodeGen/CodeGenAction.h
+++ b/include/clang/CodeGen/CodeGenAction.h
@@ -72,6 +72,11 @@ public:
EmitBCAction(llvm::LLVMContext *_VMContext = 0);
};
+class EmitBCVerifyAction : public CodeGenAction {
+public:
+ EmitBCVerifyAction(llvm::LLVMContext *_VMContext = 0);
+};
+
class EmitLLVMAction : public CodeGenAction {
public:
EmitLLVMAction(llvm::LLVMContext *_VMContext = 0);