commit | bfab85e9b187f8e59c7638c15347319799097ae1 | [log] [tgz] |
---|---|---|
author | Lang Hames <lhames@gmail.com> | Wed Jan 18 19:48:31 2012 +0000 |
committer | Lang Hames <lhames@gmail.com> | Wed Jan 18 19:48:31 2012 +0000 |
tree | 5843d92baf8bd6bc425ab81bb39f84b4174e5bc3 | |
parent | bc3af9b618c061294c7df00f3313f9c5234b8450 [diff] [blame] |
Fixed macro condition. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@148408 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/LiveIntervalAnalysis.cpp b/lib/CodeGen/LiveIntervalAnalysis.cpp index 99ba0ec..f1f5667 100644 --- a/lib/CodeGen/LiveIntervalAnalysis.cpp +++ b/lib/CodeGen/LiveIntervalAnalysis.cpp
@@ -823,7 +823,7 @@ assert(!RegOp && "Can't rematerialize instruction with multiple register operand!"); RegOp = MO.getReg(); -#ifndef NDEBUG +#ifdef NDEBUG break; #endif }