blob: 05977fb685e568e89bee95e697f18126ff0fd046 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--- folly/experimental/symbolizer/Dwarf.cpp.orig 2020-08-03 02:16:39 UTC
+++ folly/experimental/symbolizer/Dwarf.cpp
@@ -1286,9 +1286,11 @@ Dwarf::LineNumberVM::StepResult Dwarf::LineNumberVM::s
// use unbounded amounts of state (ie. use the heap). We'll do a second
// pass (using nextDefineFile()) if necessary.
break;
+#if !defined(__FreeBSD__)
case DW_LNE_set_discriminator:
discriminator_ = readULEB(program);
return CONTINUE;
+#endif
}
// Unrecognized extended opcode
|