unambiguously on one bit of code. On macOS these
lines mapped to two distinct locations, and that
was artificially throwing off the test.
llvm-svn: 319472
#include "foo.h"
-Foo::Foo() : x(42) {} // !BR_foo
+Foo::Foo() : x(42) {
+ bool some_code = x == 42; // !BR_foo
+}
Foo FooObj;
int x;
};
-Main::Main() : x(47) {} // !BR_main
+Main::Main() : x(47) {
+ bool some_code = x == 47; // !BR_main
+}
Main MainObj;