Replace a single dash with a double dash for options that have more than a single letter. llvm-bolt-wrapper.py has special treatment for output options such as "-o" and "-w" causing issues when a single dash is used, e.g. for "-write-dwp". The wrapper can be fixed as well, but using a double dash has other advantages as well. Reviewed By: rafauler Differential Revision: https://reviews.llvm.org/D127538
11 lines
394 B
Plaintext
11 lines
394 B
Plaintext
# This script checks that DataReader in llvm-bolt is reading data correctly
|
|
|
|
RUN: yaml2obj %p/Inputs/blarge.yaml &> %t.exe
|
|
RUN: llvm-bolt %t.exe -o /dev/null --data %p/Inputs/blarge.fdata --dump-data \
|
|
RUN: 2>&1 | sort | FileCheck %s -check-prefix=CHECK
|
|
|
|
CHECK: main 1105 SolveCubic 0 0 151
|
|
CHECK: main 1161 main 1130 0 27
|
|
CHECK: main 1313 usqrt 0 0 168
|
|
CHECK: main 1494 main 1423 0 1001
|