And if your bootstrapper is .NET 4 (most likely it is) you can use even more direct approach:
if (!Environment.Is64BitOperatingSystem) { //do x86 stuff }
if (!Environment.Is64BitOperatingSystem) { //do x86 stuff }