mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-15 07:59:57 +00:00
8ddc5a1929
Also fixes a test that was overly-sensitive to the exact order of statistics emitted. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169619 91177308-0d34-0410-b5e6-96231b3b80d8
14 lines
364 B
ArmAsm
14 lines
364 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 emitted object file bytes
|
|
// CHECK-NEXT: assembler - Number of fragment layouts
|
|
|
|
a:
|
|
nop
|
|
b:
|
|
.long b - a
|