commit | fcfb47d11cb9071e35ce52a8fee893676f364221 | [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 | aa4421e3289933230b386bf830923af82743f9bf | |
parent | e2bf56b1fbf7cefd6d936a03d43dda569ddd4a5d [diff] [blame] |
Get rid of the non-DebugLoc-ified getNOT() method. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63442 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/X86/X86ISelLowering.cpp b/lib/Target/X86/X86ISelLowering.cpp index e17ae99..2aa2e4a 100644 --- a/lib/Target/X86/X86ISelLowering.cpp +++ b/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; }