summaryrefslogtreecommitdiff
path: root/test/gas2nasm.py
diff options
context:
space:
mode:
authorJin Kyu Song <jin.kyu.song@intel.com>2013-11-27 20:52:22 -0800
committerJin Kyu Song <jin.kyu.song@intel.com>2013-11-27 21:01:01 -0800
commit376701ef9aeb368cedfeafbade4400748898e11b (patch)
tree9502039b8b37eaad0250cc8d6bfccc268d5f2ed0 /test/gas2nasm.py
parent5eac14bb0e5597d2bee902bee3a8ec981fa5ca03 (diff)
downloadnasm-376701ef9aeb368cedfeafbade4400748898e11b.tar.gz
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-xtest/gas2nasm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/gas2nasm.py b/test/gas2nasm.py
index 7b67f1bd..cc45be5f 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 = []