mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
e1b75899bd
If we see 0xL01, treat it like 0xL00000000000000000000000000000001 instead of crashing. llvm-svn: 223811
5 lines
134 B
LLVM
5 lines
134 B
LLVM
; RUN: llvm-as < %s | llvm-dis | FileCheck %s
|
|
|
|
@x = global fp128 0xL01
|
|
; CHECK: @x = global fp128 0xL00000000000000000000000000000001
|