Skip to content

Commit c904524

Browse files
Axel-Naumannsftnight
authored andcommitted
Back out __float128 change until we know why it's happening.
Travis should be able to reproduce this, which should allow us to report it upstream.
1 parent a48a280 commit c904524

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

lib/Interpreter/CIFactory.cpp

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -316,14 +316,9 @@ namespace {
316316
}
317317

318318
#if defined(__GLIBCXX__)
319-
// Avoid '__float128 is not supported on this target' errors
320319
if (!opts.Language && !opts.StdVersion) {
321320
switch (CxxStdCompiledWith()) {
322-
case 17:
323-
// Hopefully -D__float128=void can be removed when -std=c++17 works.
324-
sArguments.addArgument("-D__float128=void");
325-
sArguments.addArgument("-std=c++1z");
326-
break;
321+
case 17: sArguments.addArgument("-std=c++1z"); break;
327322
case 14: sArguments.addArgument("-std=c++14"); break;
328323
case 11: sArguments.addArgument("-std=c++11"); break;
329324
default: break;

0 commit comments

Comments
 (0)