Index: src/IceInst.cpp |
diff --git a/src/IceInst.cpp b/src/IceInst.cpp |
index 8412b0535b8a8fce90a1161cec7cbc78ef0019bd..698d3214ec7777cb6f4f7dc4ba0230d0906ee01a 100644 |
--- a/src/IceInst.cpp |
+++ b/src/IceInst.cpp |
@@ -579,7 +579,7 @@ GlobalString makeName(Cfg *Func, const SizeT Id) { |
return GlobalString::createWithString( |
Ctx, ".L" + FuncName.toString() + "$jumptable$__" + std::to_string(Id)); |
return GlobalString::createWithString( |
- Ctx, ".L" + std::to_string(FuncName.getID()) + "_" + std::to_string(Id)); |
+ Ctx, "_J" + std::to_string(FuncName.getID()) + "_" + std::to_string(Id)); |
John
2016/04/08 15:47:46
why not $J? that would pretty much guarantee no cl
Jim Stichnoth
2016/04/09 15:54:09
Done.
|
} |
} // end of anonymous namespace |