diff options
author | Justin Lebar <jlebar@google.com> | 2016-04-01 01:09:03 +0000 |
---|---|---|
committer | Justin Lebar <jlebar@google.com> | 2016-04-01 01:09:03 +0000 |
commit | acc47105f8909c2830f1e3e5ae8ea630b21c6bd6 (patch) | |
tree | 06565bc8788f16a5701a512867ea6d5d2bfc2855 /llvm/lib/CodeGen | |
parent | 64719159d04f16a20464fa1b13f552dbf78d9974 (diff) | |
download | bcm5719-llvm-acc47105f8909c2830f1e3e5ae8ea630b21c6bd6.tar.gz bcm5719-llvm-acc47105f8909c2830f1e3e5ae8ea630b21c6bd6.zip |
[ifcnv] Add brief comment explaining what ifcnv is.
llvm-svn: 265088
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/IfConversion.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/IfConversion.cpp b/llvm/lib/CodeGen/IfConversion.cpp index a4ce9c6f019..66ac1848392 100644 --- a/llvm/lib/CodeGen/IfConversion.cpp +++ b/llvm/lib/CodeGen/IfConversion.cpp @@ -7,7 +7,8 @@ // //===----------------------------------------------------------------------===// // -// This file implements the machine instruction level if-conversion pass. +// This file implements the machine instruction level if-conversion pass, which +// tries to convert conditional branches into predicated instructions. // //===----------------------------------------------------------------------===// |