diff options
| author | Devang Patel <dpatel@apple.com> | 2009-06-15 21:45:50 +0000 |
|---|---|---|
| committer | Devang Patel <dpatel@apple.com> | 2009-06-15 21:45:50 +0000 |
| commit | e0406af64fb0083eedff8f208b20d5e67d9c2879 (patch) | |
| tree | f16d6bb6bbb3d3126e9b08d1441d20a3da46ceae /lib/CodeGen/SelectionDAG | |
| parent | 4eb66e6a71dd207cf94332c93804265bfef49e03 (diff) | |
| download | external_llvm-e0406af64fb0083eedff8f208b20d5e67d9c2879.zip external_llvm-e0406af64fb0083eedff8f208b20d5e67d9c2879.tar.gz external_llvm-e0406af64fb0083eedff8f208b20d5e67d9c2879.tar.bz2 | |
Gracefully handle imbalanced inline function begin and end markers.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73426 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG')
| -rw-r--r-- | lib/CodeGen/SelectionDAG/FastISel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/FastISel.cpp b/lib/CodeGen/SelectionDAG/FastISel.cpp index 4a7dbeb..26e33b8 100644 --- a/lib/CodeGen/SelectionDAG/FastISel.cpp +++ b/lib/CodeGen/SelectionDAG/FastISel.cpp @@ -361,7 +361,7 @@ bool FastISel::SelectCall(User *I) { // Returned ID is 0 if this is unbalanced "end of inlined // scope". This could happen if optimizer eats dbg intrinsics // or "beginning of inlined scope" is not recoginized due to - // missing location info. In such cases, do ignore this region.end. + // missing location info. In such cases, ignore this region.end. BuildMI(MBB, DL, II).addImm(ID); } else { const TargetInstrDesc &II = TII.get(TargetInstrInfo::DBG_LABEL); |
