• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o %t -stats 2>%t.out
2// RUN: FileCheck --input-file=%t.out %s
3
4// Test that we create no fixups for this file since "a" and "b" are in the
5// same fragment.
6
7// CHECK:      assembler - Number of assembler layout and relaxation steps
8// CHECK-NEXT: assembler - Number of emitted assembler fragments
9// CHECK-NEXT: assembler - Number of emitted object file bytes
10// CHECK-NEXT: assembler - Number of fragment layouts
11// CHECK-NEXT: mcexpr    - Number of MCExpr evaluations
12
13a:
14  nop
15b:
16  .long b - a
17