diff options
author | Jin Kyu Song <jin.kyu.song@intel.com> | 2013-11-27 20:52:22 -0800 |
---|---|---|
committer | Jin Kyu Song <jin.kyu.song@intel.com> | 2013-11-27 21:01:01 -0800 |
commit | 376701ef9aeb368cedfeafbade4400748898e11b (patch) | |
tree | 9502039b8b37eaad0250cc8d6bfccc268d5f2ed0 /test/gas2nasm.py | |
parent | 5eac14bb0e5597d2bee902bee3a8ec981fa5ca03 (diff) | |
download | nasm-376701ef9aeb368cedfeafbade4400748898e11b.tar.gz nasm-376701ef9aeb368cedfeafbade4400748898e11b.tar.bz2 nasm-376701ef9aeb368cedfeafbade4400748898e11b.zip |
testcase: Remove escape characters - '\'
Since the multi-line macro preprocessor is modified to expand
grouped parameter with braces. The escape character is not needed
any more.
The testcase converter script is also modified not to generate '\'.
Signed-off-by: Jin Kyu Song <jin.kyu.song@intel.com>
Diffstat (limited to 'test/gas2nasm.py')
-rwxr-xr-x | test/gas2nasm.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/gas2nasm.py b/test/gas2nasm.py index 7b67f1b..cc45be5 100755 --- a/test/gas2nasm.py +++ b/test/gas2nasm.py @@ -44,7 +44,7 @@ def read(options): return recs def commas(recs): - replace_tbl = {' PTR':'', '\\':'', 'MM':'', '{':'\{', '}':'\}', 'XWORD':'OWORD'} + replace_tbl = {' PTR':'', '\\':'', 'MM':'', 'XWORD':'OWORD'} reccommas = [] for insn in recs: new = [] |