mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
4c1b83e53f
of two symbols in the same fragment. llvm-svn: 122145
17 lines
560 B
ArmAsm
17 lines
560 B
ArmAsm
// RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o %t -stats 2>%t.out
|
|
// RUN: FileCheck --input-file=%t.out %s
|
|
|
|
// Test that we create no fixups for this file since "a" and "b" are in the
|
|
// same fragment.
|
|
|
|
// CHECK: assembler - Number of assembler layout and relaxation steps
|
|
// CHECK-NEXT: assembler - Number of emitted assembler fragments
|
|
// CHECK-NEXT: assembler - Number of emitted object file bytes
|
|
// CHECK-NEXT: assembler - Number of fragment layouts
|
|
// CHECK-NEXT: mcexpr - Number of MCExpr evaluations
|
|
|
|
a:
|
|
nop
|
|
b:
|
|
.long b - a
|