The unspecified-behavior tag has no wiki summary.
2
votes
2answers
66 views
Is indexing a new map element and having something that reads it assigned to it undefined behaviour, or just unspecified?
After answering this question, there was a long discussion over whether the code in question was undefined behaviour or not. Here's the code:
std::map<string, size_t> word_count;
...
11
votes
2answers
134 views
Is there a sequence point between a function call returning an object and a method call on that object?
If I write f(x)->g(args, ...) can I rely on a sequence point after f(x) before the evaluation of args, ...? I can see arguments both ways:
§1.9.17 "When calling a function (whether or not the ...
0
votes
0answers
11 views
Fixing weird behavior of ExplodeString in SourcePawn
I'm trying to implement an automatic Directoryscan searching for soundfiles for my CS:S Plugin.
The Sound files have a specific name convention containing their use ('win' for winsongs and 'kf' for ...
25
votes
3answers
780 views
Is it undefined behaviour if multiple operands in a compound expression modify the same object?
I vaguely remember reading somewhere that it is undefined behaviour if multiple operands in a compound expression modify the same object.
I believe an example of this UB is shown in the code below ...
1
vote
4answers
196 views
Is (x++, y) + (y++, x) undefined or unspecified, and if unspecified, what can it compute?
The comma sequence operator introduces a sequence point in an expression. I am wondering whether this means that the program below avoids undefined behavior.
int x, y;
int main()
{
return (x++, y) ...
1
vote
1answer
71 views
Why does this const specifier have unspecified behavior?
I maintain an open source program and one of my users reported that it won't compile under clang, which I've never used before. One of the errors that I'm getting is *Warning: qualifier on function ...
3
votes
2answers
119 views
Sequence points when calling functions in C and undefined/unspecified behaviour
I'm trying to pin down my understanding of sequence points in C -- just wanted to check something. At present, I believe that (1) is undefined whereas (2) is merely unspecified, on the basis that in ...
0
votes
2answers
279 views
CUDA: “Stack Overflow or Breakpoint Hit” and unspecified launch failure error after copying char array from host to device
I have a large char array in my main program that I copy in chunks to the device
memory. I run about 500,000 threads in my program and each thread accesses 2000 chars.
So I transfer 500,000 * 2000 = ...
5
votes
4answers
165 views
Should an empty base class affect the layout of the derived class?
The C++ standard (quoting from draft n3242) says the following about subobjects [intro.object]:
Unless an object is a bit-field or a base class subobject of zero
size, the address of that object ...
5
votes
2answers
124 views
Does this code produce Undefined Behavior or it is merely Unspecified Behavior?
Lets say that we have two compilation units as follows:
// a.cpp
extern int value2;
int value1 = value2 + 10;
// b.cpp
extern int value1;
int value2 = value1 + 10;
When I tried it on VC2010, it ...
3
votes
4answers
332 views
Reason for Scala's Map.unzip returning (Iterable, Iterable)
the other day I was wondering why scala.collection.Map defines its unzip method as
def unzip [A1, A2] (implicit asPair: ((A, B)) ⇒ (A1, A2)): (Iterable[A1], Iterable[A2])
Since the method returns ...
1
vote
4answers
726 views
Why do different C++ compilers give different results for this code?
I'm writing some C++ codes for fun and practice, to learn more about language features. I want to know more about static variables and their behaviour in recursive functions. Trying this code in g++ ...
8
votes
3answers
731 views
Is it unspecified behavior to compare pointers to different arrays for equality?
The equality operators have the semantic restrictions of relational operators on pointers:
The == (equal to) and the != (not equal to) operators have the same semantic restrictions, conversions, ...
8
votes
4answers
162 views
Is there any tool for C++ which will check for common unspecified behavior?
Often one makes assumptions about a particular platform one is coding on, for example that signed integers use two's complement storage, or that (0xFFFFFFFF == -1), or things of that nature.
Does a ...
19
votes
5answers
2k views
How to implement `memmove` in standard C without an intermediate copy?
From the man page on my system:
void *memmove(void *dst, const void *src, size_t len);
DESCRIPTION
The memmove() function copies len bytes from string src to string dst.
...
43
votes
3answers
769 views
In C99, is f()+g() undefined or merely unspecified?
I used to think that in C99, even if the side-effects of functions f and g interfered, and although the expression f() + g() does not contain a sequence point, f and g would contain some, so the ...
7
votes
5answers
970 views
Why does a main function without a return statement return value 12?
I have written a program that prints a table. I have not included the return syntax in the main function, but still whenever I type echo $? it displays 12.
My source code :
#include <stdio.h>
...