File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 9
9
# ROOT
10
10
cmake_minimum_required (VERSION 2.8)
11
11
12
+ if (NOT IGC_BUILD)
13
+ enable_testing ()
14
+ endif ()
15
+
12
16
project (IGA)
13
17
14
18
include (BuildSetup.cmake)
Original file line number Diff line number Diff line change @@ -269,7 +269,7 @@ class Formatter : public BasicFormatter
269
269
}
270
270
formatPrefixComment (i, currInstBits);
271
271
272
- const bool isSend = i.getOpSpec (). isSendOrSendsFamily ();
272
+ const bool isSend = i.is (Op::SEND); // not for sendc
273
273
if (isSend) {
274
274
bool sendPrinted = false ;
275
275
if (platform () >= Platform::XE_HPG && opts.printLdSt ) {
@@ -1292,7 +1292,6 @@ void Formatter::formatInstOpts(
1292
1292
} // end formatInstOpts
1293
1293
1294
1294
bool Formatter::formatLoadStoreSyntax (const Instruction& i) {
1295
- // TODO: relax this, but ensure nothing breaks
1296
1295
if (platform () < Platform::XE_HPG) {
1297
1296
// We will not even try on <=XeHPG
1298
1297
return false ;
You can’t perform that action at this time.
0 commit comments