diff options
Diffstat (limited to 'llvm/test')
-rw-r--r-- | llvm/test/MC/Hexagon/elf-flags.ll | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/llvm/test/MC/Hexagon/elf-flags.ll b/llvm/test/MC/Hexagon/elf-flags.ll new file mode 100644 index 00000000000..ec1d22b38d7 --- /dev/null +++ b/llvm/test/MC/Hexagon/elf-flags.ll @@ -0,0 +1,9 @@ +; RUN: llc -march=hexagon -mcpu=hexagonv4 --filetype=obj %s -o - | llvm-readobj -file-headers -elf-output-style=GNU | FileCheck --check-prefix=CHECK-V4 %s +; RUN: llc -march=hexagon -mcpu=hexagonv5 --filetype=obj %s -o - | llvm-readobj -file-headers -elf-output-style=GNU | FileCheck --check-prefix=CHECK-V5 %s +; RUN: llc -march=hexagon -mcpu=hexagonv55 --filetype=obj %s -o - | llvm-readobj -file-headers -elf-output-style=GNU | FileCheck --check-prefix=CHECK-V55 %s +; RUN: llc -march=hexagon -mcpu=hexagonv60 --filetype=obj %s -o - | llvm-readobj -file-headers -elf-output-style=GNU | FileCheck --check-prefix=CHECK-V60 %s + +; CHECK-V4: Flags: 0x3 +; CHECK-V5: Flags: 0x4 +; CHECK-V55: Flags: 0x5 +; CHECK-V60: Flags: 0x60 |