We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4216b5 commit 5cb9b92Copy full SHA for 5cb9b92
bolt/test/AArch64/dummy-return.test
@@ -0,0 +1,6 @@
1
+REQUIRES: system-linux
2
+
3
+RUN: %clang %p/../Inputs/main.c -o %t -Wl,-q -static
4
+RUN: not llvm-bolt -instrument -instrumentation-sleep-time=1 %t -o %t.instr 2>&1 | FileCheck %s
5
6
+CHECK: not implemented
bolt/test/Inputs/main.c
@@ -0,0 +1,3 @@
+// dummy function just for emitting relocations to the linker.
+int foo() { return 0; }
+int main(int argc, char **argv) { return foo() + 1; }
0 commit comments