Displaying 3 results from an estimated 3 matches for "afunc".
Did you mean:
func
2010 Jul 30
5
Parameterised Classes in 2.6.0... still no luck
...and still can''t
get parameterised classes to work. At least, I think it''s 2.6.0... the
version number in the RPM spec file says 0.25.5.
This simple example:
/etc/puppet/manifests/nodes/pax/name01.pax.xxx.com.pp:
node ''name01.pax.xxx.com'' {
class { amodule::afunc: version => "1.0" }
}
/etc/puppet/modules/amodule/manifests/afunc.pp:
class amodule::afunc ( $version ) {
file { "/tmp/foo": ensure => directory; }
}
This causes the following error to be displayed on the client:
Jul 30 03:48:45 s_sys@name01.pax.livegamer.com puppet...
2015 Jul 02
2
[LLVMdev] input and output values from a loop
...ues from a loop. For this I am doing
something like this:
DominatorTree &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree();
CodeExtractor Extractor(DT, *L);
Extractor.findInputsOutputs(inputs, outputs);
When I print the input and output values for the following test code:
void aFunc(void)
{
int sum=0;
puts("aFunc()");
for (int i = 0; i < 10; i++)
{
int fact=i*2;
sum=sum+i+fact;
}
printf("%d",sum);
}
I get the following:
Inputs
type i32* name i
type i32* name fact
type i32* name sum
Outputs...
2018 Dec 12
4
Using LLD to link against third-party libraries? How?
I need them so I can build stuff using clang or clang-cl with its C++ standard libraries. To make sure that lld-link won't give errors about missing symbols from any standard libraries.
By the way, you wouldn't happen to know how to use link.exe, would you? I might need some help on that to understand how to use lld-link.exe.
________________________________
From: Zachary Turner