summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJuergen Ributzka <juergen@apple.com>2014-06-26 23:39:52 +0000
committerJuergen Ributzka <juergen@apple.com>2014-06-26 23:39:52 +0000
commitb1b6d10d0934cade4af6ac8ea9ad37ade7d2fcfd (patch)
tree5c7338e308df6b2b08d674b303deb339c753a9a8 /include
parent307a6447e5eb143c480646ab9ae61f0aaafcdd18 (diff)
downloadllvm-b1b6d10d0934cade4af6ac8ea9ad37ade7d2fcfd.tar.gz
llvm-b1b6d10d0934cade4af6ac8ea9ad37ade7d2fcfd.tar.bz2
llvm-b1b6d10d0934cade4af6ac8ea9ad37ade7d2fcfd.tar.xz
[StackMaps] Enable patchpoint liveness analysis per default.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211817 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/StackMapLivenessAnalysis.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/CodeGen/StackMapLivenessAnalysis.h b/include/llvm/CodeGen/StackMapLivenessAnalysis.h
index 651ca6b914..6f07546162 100644
--- a/include/llvm/CodeGen/StackMapLivenessAnalysis.h
+++ b/include/llvm/CodeGen/StackMapLivenessAnalysis.h
@@ -26,10 +26,10 @@ namespace llvm {
/// a function and attaches the register live-out information to a patchpoint
/// intrinsic if present.
///
-/// This is an optional pass that has to be explicitly enabled via the
-/// -enable-patchpoint-liveness flag. The pass skips functions that don't have
-/// any patchpoint intrinsics. The information provided by this pass is optional
-/// and not required by the aformentioned intrinsic to function.
+/// This pass can be disabled via the -enable-patchpoint-liveness=false flag.
+/// The pass skips functions that don't have any patchpoint intrinsics. The
+/// information provided by this pass is optional and not required by the
+/// aformentioned intrinsic to function.
class StackMapLiveness : public MachineFunctionPass {
MachineFunction *MF;
const TargetRegisterInfo *TRI;