| commit | 8fb81f1b3d32e8e8a2b012438c65624e87b306af | [log] [tgz] |
|---|---|---|
| author | Bill Wendling <isanbard@gmail.com> | Fri Jan 30 23:03:19 2009 +0000 |
| committer | Bill Wendling <isanbard@gmail.com> | Fri Jan 30 23:03:19 2009 +0000 |
| tree | aa1c14894ffb8c2d7dcaf720bc4b9ee8424f8d2f | |
| parent | 3dc5d2454e8e31df587c7dc27ddbce853d4f34df [diff] [blame] |
Get rid of the non-DebugLoc-ified getNOT() method. llvm-svn: 63442
diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp index e17ae99..2aa2e4a 100644 --- a/llvm/lib/Target/X86/X86ISelLowering.cpp +++ b/llvm/lib/Target/X86/X86ISelLowering.cpp
@@ -5280,7 +5280,7 @@ // If the logical-not of the result is required, perform that now. if (Invert) - Result = DAG.getNOT(Result, VT); + Result = DAG.getNOT(Op.getDebugLoc(), Result, VT); return Result; }