[bpf] fix build

fix build broken due to r233599.
Would still need to switch to MDLocation long term.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@233619 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Alexei Starovoitov 2015-03-30 22:40:35 +00:00
parent 910e36d7bc
commit adb58c18f5

View File

@ -63,8 +63,8 @@ public:
std::string Str;
raw_string_ostream OS(Str);
if (DLoc.isUnknown() == false) {
DILocation DIL(DLoc.getAsMDNode(Fn.getContext()));
if (DLoc) {
DILocation DIL(DLoc.getAsMDNode());
StringRef Filename = DIL.getFilename();
unsigned Line = DIL.getLineNumber();
unsigned Column = DIL.getColumnNumber();