diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-08-14 19:59:24 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-08-14 19:59:24 +0000 |
commit | e44313e0ca7ca3504dd9dc906e2eff8b36bc4ee4 (patch) | |
tree | 8fb617cf72a46286750e2366e576df23f8b3fece /test/MC | |
parent | dac19a7951e7b8ce62f311dee208936e60e02516 (diff) | |
download | external_llvm-e44313e0ca7ca3504dd9dc906e2eff8b36bc4ee4.zip external_llvm-e44313e0ca7ca3504dd9dc906e2eff8b36bc4ee4.tar.gz external_llvm-e44313e0ca7ca3504dd9dc906e2eff8b36bc4ee4.tar.bz2 |
llvm-mc: Fix bugs where bytes were unintentionally being printed as signed.
- We now print all of 403.gcc cleanly (llvm-mc -> 'as' as diffed to 'as'), minus two
'rep;movsl' instructions (which I missed before).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79031 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/MC')
-rw-r--r-- | test/MC/AsmParser/directive_ascii.s | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/MC/AsmParser/directive_ascii.s b/test/MC/AsmParser/directive_ascii.s index 68328f5..cc6d23b 100644 --- a/test/MC/AsmParser/directive_ascii.s +++ b/test/MC/AsmParser/directive_ascii.s @@ -31,9 +31,10 @@ TEST3: # CHECK: .byte 1 # CHECK: .byte 0 # CHECK: .byte 49 +# CHECK: .byte 128 # CHECK: .byte 0 TEST4: - .ascii "\1\01\07\08\001\0001\b\0" + .ascii "\1\01\07\08\001\0001\200\0" # CHECK: TEST5: # CHECK: .byte 8 |