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 6409213 commit badacecCopy full SHA for badacec
bolt/test/runtime/relative-vftable.cpp
@@ -12,8 +12,8 @@
12
// CHECK-NEXT: derived_bar
13
// CHECK-NEXT: derived_goo
14
15
-// RUN: llvm-bolt --instrument %t/main.so -o %t/main.instr.so
16
-// RUN: %t/main.instr.so | FileCheck %s
+// RUN: llvm-bolt %t/main.so -o %t/main.bolted.so --trap-old-code
+// RUN: %t/main.bolted.so | FileCheck %s
17
18
;--- tt.h
19
#include <stdio.h>
@@ -38,7 +38,7 @@ void Derived::goo() { printf("derived_goo\n"); }
38
39
;--- main.cpp
40
#include "tt.h"
41
-// #pragma clang optimize off
+#pragma clang optimize off
42
43
void Base::foo() { printf("base_foo\n"); }
44
void Base::bar() { printf("base_bar\n"); }
0 commit comments