Fix a bug in getRunOptions() where there was no space between the arch spec and the compiler spec.

llvm-svn: 152941
This commit is contained in:
Johnny Chen 2012-03-16 20:44:00 +00:00
parent ae12b18ad8
commit 531c085815

View File

@ -868,7 +868,7 @@ class Base(unittest2.TestCase):
else:
option_str = ""
if comp:
option_str += "-C " + comp
option_str += " -C " + comp
return option_str
# ==================================================