Index: tools/autotool.py
===================================================================
--- tools/autotool.py	(revision 270bf4fe38f53f4a00441b4db82354b89ed7cf71)
+++ tools/autotool.py	(revision a420203e10bd60efe9f0855ec6ec46a9bf0fac5f)
@@ -47,4 +47,7 @@
 PROBE_SOURCE = 'probe.c'
 PROBE_OUTPUT = 'probe.s'
+
+PROBE_INT128_SOURCE = 'probe_int128.c'
+PROBE_INT128_OUTPUT = 'probe_int128.s'
 
 PACKAGE_BINUTILS = "usually part of binutils"
@@ -533,5 +536,5 @@
 	check_common(common, "CC")
 	
-	outf = open(PROBE_SOURCE, 'w')
+	outf = open(PROBE_INT128_SOURCE, 'w')
 	outf.write(PROBE_INT128_HEAD)
 	outf.write("\tDECLARE_INTSIZE(\"INT128\", int __attribute((mode(TI))));\n")
@@ -541,5 +544,5 @@
 	args = [common['CC']]
 	args.extend(common['CC_ARGS'])
-	args.extend(["-S", "-o", PROBE_OUTPUT, PROBE_SOURCE])
+	args.extend(["-S", "-o", PROBE_INT128_OUTPUT, PROBE_INT128_SOURCE])
 	
 	try:
@@ -550,9 +553,9 @@
 		return False
 	
-	if (not os.path.isfile(PROBE_OUTPUT)):
+	if (not os.path.isfile(PROBE_INT128_OUTPUT)):
 		sys.stderr.write("no\n")
 		return False
 	
-	inf = open(PROBE_OUTPUT, 'r')
+	inf = open(PROBE_INT128_OUTPUT, 'r')
 	lines = inf.readlines()
 	inf.close()
@@ -564,5 +567,5 @@
 			if (tokens[0] == "AUTOTOOL_DECLARE"):
 				if (len(tokens) < 7):
-					print_error(["Malformed declaration in \"%s\" on line %s." % (PROBE_OUTPUT, j), COMPILER_FAIL])
+					print_error(["Malformed declaration in \"%s\" on line %s." % (PROBE_INT128_OUTPUT, j), COMPILER_FAIL])
 				
 				category = tokens[1]
@@ -578,5 +581,5 @@
 						value_int = decode_value(value)
 					except:
-						print_error(["Integer value expected in \"%s\" on line %s." % (PROBE_OUTPUT, j), COMPILER_FAIL])
+						print_error(["Integer value expected in \"%s\" on line %s." % (PROBE_INT128_OUTPUT, j), COMPILER_FAIL])
 					
 					if (subcategory == "unsigned"):
@@ -589,5 +592,5 @@
 							return False
 					else:
-						print_error(["Unexpected keyword \"%s\" in \"%s\" on line %s." % (subcategory, PROBE_OUTPUT, j), COMPILER_FAIL])
+						print_error(["Unexpected keyword \"%s\" in \"%s\" on line %s." % (subcategory, PROBE_INT128_OUTPUT, j), COMPILER_FAIL])
 	
 	sys.stderr.write("yes\n")
