xref: /llvm-project/llvm/test/tools/llvm-ml/hexfloat_warn.asm (revision 0499a9d6889050c4b28c0d6d9ec987831ad7de7e)
1; RUN: llvm-ml -filetype=s %s /Fo - 2>&1 | FileCheck %s
2
3.data
4
5; CHECK: :[[# @LINE + 1]]:25: warning: MASM-style hex floats ignore explicit sign
6negative_hexfloat REAL4 -3fa66666r
7; CHECK-LABEL: negative_hexfloat:
8; CHECK-NEXT: .long 1067869798
9
10.code
11
12END
13