Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 257626 | Differences between
and this patch

Collapse All | Expand All

(-)atibrook/platform/brcc/src/amdhlsl/AMDhlsl/ILCodeGen/HeaderFiles/ilregister.hpp (+1 lines)
Lines 89-94 jurisdiction and venue of these courts. Link Here
89
#ifndef AMD_ILREGISTER_HPP
89
#ifndef AMD_ILREGISTER_HPP
90
#define AMD_ILREGISTER_HPP
90
#define AMD_ILREGISTER_HPP
91
91
92
#include <cstring>
92
#include "convert.hpp"
93
#include "convert.hpp"
93
94
94
#ifndef IL_BIT
95
#ifndef IL_BIT
(-)atibrook.orig/platform/brcc/src/amdhlsl/AMDhlsl/HighLevelFE/SourceFiles/preprocessorstate.cpp (+1 lines)
Lines 90-95 Link Here
90
#include "parameter.hpp"
90
#include "parameter.hpp"
91
#include "assertlogging.hpp"
91
#include "assertlogging.hpp"
92
#include "positionaware.hpp"
92
#include "positionaware.hpp"
93
#include <cstdio>
93
94
94
PARAMETER(p_select, "select");
95
PARAMETER(p_select, "select");
95
PARAMETER(p_input,  "input");
96
PARAMETER(p_input,  "input");
(-)atibrook.orig/platform/brcc/src/amdhlsl/InterfaceUtils/SourceFiles/calutAMDhlslCompiler.cpp (+2 lines)
Lines 95-100 Link Here
95
#include <assert.h>
95
#include <assert.h>
96
#include "amuABIMultiBinary.h"
96
#include "amuABIMultiBinary.h"
97
#include "hlfrontendapi.hpp"
97
#include "hlfrontendapi.hpp"
98
#include <cstdlib>
99
#include <cstring>
98
100
99
static ErrorState     amdHLSLerrst;
101
static ErrorState     amdHLSLerrst;
100
102
(-)atibrook.orig/platform/brcc/src/HighLevelFE/Parser/lexer.cpp (+1 lines)
Lines 9-14 Link Here
9
#define YY_FLEX_MINOR_VERSION 5
9
#define YY_FLEX_MINOR_VERSION 5
10
10
11
#include <stdio.h>
11
#include <stdio.h>
12
#include <string.h>
12
13
13
14
14
/* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */
15
/* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */
(-)atibrook.orig/platform/brcc/src/getopt.c (-1 / +1 lines)
Lines 273-279 Link Here
273
		}
273
		}
274
	}
274
	}
275
	if ((optchar = (int)*place++) == (int)':' ||
275
	if ((optchar = (int)*place++) == (int)':' ||
276
	    (oli = strchr(options + (IGNORE_FIRST ? 1 : 0), optchar)) == NULL) {
276
	    (oli = (char*)strchr(options + (IGNORE_FIRST ? 1 : 0), optchar)) == NULL) {
277
		/* option letter unknown or ':' */
277
		/* option letter unknown or ':' */
278
		if (!*place)
278
		if (!*place)
279
			++optind;
279
			++optind;
(-)atibrook.orig/platform/include/brook/CPU/brtvector.hpp (-1 / +1 lines)
Lines 317-323 Link Here
317
template <class T> static typename GetValueOf<T>::type GetAt (const T& in,int i) {
317
template <class T> static typename GetValueOf<T>::type GetAt (const T& in,int i) {
318
    return in.getAt(i);
318
    return in.getAt(i);
319
}
319
}
320
#define SPECIALGETAT(TYP) template <> static TYP GetAt (const TYP& in,int UNUSED(i)) {return in;}
320
#define SPECIALGETAT(TYP) template <> TYP GetAt (const TYP& in,int UNUSED(i)) {return in;}
321
321
322
SPECIALGETAT(int)
322
SPECIALGETAT(int)
323
SPECIALGETAT(unsigned int)
323
SPECIALGETAT(unsigned int)
(-)atibrook.orig/platform/runtime/Common/Impls/StreamImpl.h (+1 lines)
Lines 49-54 Link Here
49
#include "Device.h"
49
#include "Device.h"
50
#include "ExportDef.h"
50
#include "ExportDef.h"
51
#include <map>
51
#include <map>
52
#include <string>
52
53
53
class Buffer;
54
class Buffer;
54
class BaseDevice;
55
class BaseDevice;

Return to bug 257626